35 lines
661 B
JavaScript
35 lines
661 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",
|
|
},
|
|
green: "#00DA00",
|
|
},
|
|
fontSize: {
|
|
"4xl": ["4rem", "1.3"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|