This commit is contained in:
Igor Brylev 2025-02-28 17:24:40 +03:00
parent 7dbdc345da
commit c4993f6540
23 changed files with 458 additions and 102 deletions

View file

@ -7,7 +7,7 @@ module.exports = {
container: false,
},
darkMode: ["class", '[data-theme="dark"]'],
content: ["./src/**/*.{jsx,tsx,html}"],
content: ["./src/**/*.{js,jsx,ts,tsx,svg}"],
theme: {
extend: {
fontFamily: {
@ -22,8 +22,48 @@ module.exports = {
sm: "0px",
lg: "997px",
},
colors: {},
colors: {
fontSize: {
"5xl": "2.5rem",
},
brand: {
900: "#332c05",
850: "#4d4107",
800: "#66570a",
700: "#b29911",
650: "#e6b600",
600: "#f0cd14",
500: "#ffda18",
400: "#ffe146",
300: "#ffe974",
200: "#fff0a3",
150: "#fff4ba",
100: "#fff8d1",
50: "#fffbe8",
},
gray: {
950: "#0D0E10",
900: "#1B1D20",
850: "#282B31",
800: "#353A41",
700: "#505661",
600: "#6A7382",
500: "#8590A2",
400: "#9DA6B5",
300: "#B6BCC7",
200: "#CED3DA",
150: "#DADEE3",
100: "#E7E9EC",
50: "#F9F9F9",
},
blue: {
950: "#0c192b",
900: "#14253D",
},
},
},
},
plugins: [],
plugins: [
require("@tailwindcss/typography"),
],
};