Files
rust_leptos/tailwind.config.js
2025-03-09 00:28:14 +01:00

36 lines
702 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
files: ["*.html", "./src/**/*.rs"],
},
safelist: ['rotate-90', '-rotate-90'],
theme: {
extend: {
colors: {
prim: {
lightest: "#2E3235",
light: "#2B2F33",
DEFAULT: "#26292D",
},
second: {
DEFAULT: "#FEFEFE",
dark: "#929496",
},
third: {
light: "#F96662",
DEFAULT: "#FC443D",
},
fourth: {
light: "#FFD885",
DEFAULT: "#FEBB2E",
},
green: "#00DA00",
},
fontSize: {
"4xl": ["4rem", "1.3"],
},
},
},
plugins: [],
};