Files
rust_leptos/tailwind.config.js
2024-11-27 23:04:04 +01:00

31 lines
576 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
files: ["*.html", "./src/**/*.rs"],
},
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",
},
},
},
},
plugins: [],
};