mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-04 20:41:30 +01:00
35 lines
700 B
JavaScript
35 lines
700 B
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']
|
|
}
|
|
}
|
|
},
|
|
variants: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
}
|