1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-17 05:25:54 +02:00
.profile/tailwind.config.js

53 lines
1.2 KiB
JavaScript
Raw Normal View History

2022-10-03 20:52:15 +02:00
/** @type {import('tailwindcss').Config} */
const tailwindConfig = {
2021-12-04 15:52:51 +01:00
content: [
'./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: {
2021-12-04 15:52:51 +01:00
DEFAULT: '#ff6000',
dark: '#ffd800'
}
},
boxShadow: {
2022-02-22 21:19:42 +01:00
dark: '0px 0px 6px 6px rgba(0, 0, 0, 0.25)',
light: '0px 0px 6px 6px 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: {
2021-12-04 15:52:51 +01:00
headline: "'Montserrat', 'Arial', 'sans-serif'"
2021-11-08 15:10:26 +01:00
},
typography: {
DEFAULT: {
css: {
2021-12-04 15:52:51 +01:00
fontFamily: "'Montserrat', 'Arial', 'sans-serif'",
2021-11-08 15:10:26 +01:00
a: {
textDecoration: 'none',
'&:hover': {
textDecoration: 'underline',
fontWeight: 400
}
}
}
}
}
}
},
2021-11-08 15:10:26 +01:00
plugins: [require('@tailwindcss/typography')]
}
2022-10-03 20:52:15 +02:00
module.exports = tailwindConfig