1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-18 21:55:52 +02:00
.profile/tailwind.config.js
2022-02-20 15:12:10 +01:00

49 lines
1.0 KiB
JavaScript

module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
screens: {
xs: '380px'
},
colors: {
black: '#181818',
gray: {
DEFAULT: '#333333',
dark: '#b2bac2'
},
yellow: {
DEFAULT: '#ff8000',
dark: '#ffd800'
}
},
boxShadow: {
dark: '0px 1px 10px hsla(0, 0%, 100%, 0.2)',
light: '0px 1px 10px rgba(0, 0, 0, 0.25)'
},
fontFamily: {
headline: ['Montserrat', 'Arial', 'sans-serif']
},
typography: {
DEFAULT: {
css: {
fontFamily: ['Montserrat', 'Arial', 'sans-serif'],
a: {
textDecoration: 'none',
'&:hover': {
textDecoration: 'underline',
fontWeight: 400
}
}
}
}
}
}
},
variants: {
extend: {}
},
plugins: [require('@tailwindcss/typography')]
}