hamburger/tailwind.config.js

39 lines
825 B
JavaScript
Raw Normal View History

2023-03-20 20:39:59 +01:00
module.exports = {
2023-07-16 23:56:46 +02:00
content: ["./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
2023-03-20 20:39:59 +01:00
theme: {
extend: {
2023-07-16 23:56:46 +02:00
backgroundImage: {
"gothic-pattern":
"linear-gradient(to right, rgba(24, 24, 27, 0.8) 0 100%), url('/pattern.png')",
},
colors: {
'trans-blue': '#55cdfc',
'trans-pink': '#f7a8b8',
'bi-red': '#d60270',
'bi-violet': '#9b4f96',
'bi-blue': '#0038a8'
},
2023-03-20 20:39:59 +01:00
fontFamily: {
2023-07-16 23:56:46 +02:00
jetbrains: ["JetBrains Mono", "sans-serif"],
2023-03-20 20:39:59 +01:00
},
2023-07-16 23:56:46 +02:00
maxWidth: {
'vw': '100vw'
},
spacing: {
none: '0',
xs: '0.25em',
sm: '0.5em',
small: '0.5em',
md: '0.75em',
lg: '1em',
base: '1em',
big: '1.5em',
xl: '1.25em',
},
2023-03-20 20:39:59 +01:00
},
},
plugins: [],
};