mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-03 20:11:30 +01:00
54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const tailwindConfig = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
'./blog/**/*.{js,ts,jsx,tsx}'
|
|
],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
screens: {
|
|
xs: '380px'
|
|
},
|
|
colors: {
|
|
black: '#181818',
|
|
gray: {
|
|
DEFAULT: '#333333',
|
|
dark: '#b2bac2'
|
|
},
|
|
yellow: {
|
|
DEFAULT: '#ff6000',
|
|
dark: '#ffd800'
|
|
}
|
|
},
|
|
boxShadow: {
|
|
dark: '0px 0px 4px 4px rgba(0, 0, 0, 0.25)',
|
|
light: '0px 0px 4px 4px rgba(0, 0, 0, 0.10)',
|
|
darkFlag: '0px 1px 10px hsla(0, 0%, 100%, 0.2)',
|
|
lightFlag: '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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: [require('@tailwindcss/typography')]
|
|
}
|
|
|
|
module.exports = tailwindConfig
|