2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/tailwind.config.js

34 lines
857 B
JavaScript
Raw Normal View History

2021-10-24 05:48:06 +02:00
module.exports = {
2021-12-28 16:06:58 +01:00
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}'
],
2021-10-24 05:48:06 +02:00
darkMode: 'class',
theme: {
extend: {
screens: {
xs: '380px'
},
colors: {
black: '#212121',
success: '#45C85A',
error: '#C84545'
},
boxShadow: {
dark: '0px 1px 10px hsla(0, 0%, 100%, 0.2)',
light: '0px 1px 10px rgba(0, 0, 0, 0.25)',
darkFlag: '0px 1px 10px hsla(0, 0%, 100%, 0.2)',
lightFlag: '0px 1px 10px rgba(0, 0, 0, 0.25)',
2021-10-24 05:48:06 +02:00
green: '0 0 0 2px #27b05e',
success: '0 2px 8px rgba(70, 200, 92, 0.3)',
error: '0 2px 8px rgba(200, 69, 69, 0.5)'
},
fontFamily: {
2021-12-28 16:06:58 +01:00
headline: "'Montserrat', 'Arial', 'sans-serif'",
paragraph: "'Roboto', 'Arial', 'sans-serif'"
2021-10-24 05:48:06 +02:00
}
}
},
plugins: []
}