-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.tsss
More file actions
67 lines (66 loc) · 3.61 KB
/
Copy pathtailwind.config.tsss
File metadata and controls
67 lines (66 loc) · 3.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
thm_root1_color: `var(--thm-root1-color)`, // define the primary color used in your website's design. This color can be used for headings, buttons, and other elements that need to stand out.
thm_root2_color: `var(--thm-root2-color)`, // define the secondary color used in your website's design. This color can be used for backgrounds, borders, and other elements that need to be less prominent.
thm_primary_color: `var(--thm-primary-color)`, // define the color of website's headings, buttons, and links.
thm_background: `var(--thm-background)`, // background color of your website's pages.
thm_secondary_background: `var(--thm-secondary-background)`, // define the background color of secondary elements such as panels, cards, and containers.
thm_secondary_color: `var(--thm-secondary-color)`, // define the color of secondary elements such as text, icons, and borders.
thm_dark_primary_color: `var(--thm-dark-primary-color)`, // define the color of website's headings, buttons, and links.
thm_dark_secondary_color: `var(--thm-dark-secondary-color)`, // define the color of secondary elements such as text, icons, and borders.
thm_dark_background: `var(--thm-dark-background)`, // background color of your website's pages.
thm_dark_secondary_background: `var(--thm-dark-secondary-background)`, // define the background color of secondary elements such as panels, cards, and containers.
thm_dark_root1_color: `var(--thm-dark-root1-color)`, // define the primary color used in your website's design. This color can be used for headings, buttons, and other elements that need to stand out.
thm_dark_root2_color: `var(--thm-dark-root2-color)`, // define the secondary color used in your website's design. This color can be used for backgrounds, borders, and other elements that need to be less prominent.
thm_border: `var(--thm-border)`,
thm_radius: `var(--thm-radius)`,
thm_input: `var(--thm-input)`,
thm_ring: `var(--thm-ring)`,
thm_card: `var(--thm-card)`,
thm_card_foreground: `var(--thm-card-foreground)`,
thm_accent: `var(--thm-accent)`,
thm_accent_foreground: `var(--thm-accent-foreground)`,
thm_primary_foreground: `var(--thm-primary-foreground)`,
thm_primary: `var(--thm-primary)`,
},
fontFamily: {
sans: [`var(--thm-font)`, "Inter", "Poppins", "sans-serif"],
},
fontSize: {
xxxxxxs: "0.25rem", // Sextuple extra small
xxxxxs: "0.3125rem", // Quintuple extra small
xxxxs: "0.375rem", // Quadruple extra small
xxxs: "0.5rem", // Triple extra small
xxs: "0.625rem", // Extra extra small
"3xl": "1.875rem", // Triple extra small
"4xl": "2.25rem", // Quadruple extra small
"5xl": "3rem", // Quintuple extra small
"6xl": "4rem", // Sextuple extra large
// Add more custom font sizes here
},
screens: {
xs: "450px",
sm: "640px",
md: "768px",
lg: "1025px",
xl: "1400px",
"2xl": "1650px", // Custom screen size,
},
},
},
plugins: [],
};
export default config;