hamburger/tailwind.config.js

16 lines
358 B
JavaScript
Raw Normal View History

2023-03-20 20:39:59 +01:00
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
jetbrains: ['JetBrains Mono', 'sans-serif'],
},
2023-05-30 02:26:50 +02:00
backgroundImage: {
'gothic-pattern': "linear-gradient(to right, rgba(24, 24, 27, 0.8) 0 100%), url('/pattern.png')"
}
2023-03-20 20:39:59 +01:00
},
},
plugins: [],
};