26 lines
No EOL
514 B
JavaScript
26 lines
No EOL
514 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./public/**/*.{html,js}",
|
|
"./public/index.html",
|
|
"./public/js/script.js"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'orange': {
|
|
50: 'rgba(252, 151, 41, 0.1)',
|
|
500: '#fc9729',
|
|
600: '#fc9729',
|
|
700: '#df8925',
|
|
800: '#fc9729',
|
|
}
|
|
},
|
|
fontFamily: {
|
|
'sans': ['Montserrat', 'sans-serif'],
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
darkMode: 'class'
|
|
} |