-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.preset.cjs
45 lines (45 loc) · 1.65 KB
/
tailwind.preset.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
theme: {
extend: {
borderRadius: {
DEFAULT: "var(--theme-radius)",
},
colors: {
fg: {
100: "hsl(var(--theme-fg-100) / <alpha-value>)",
200: "hsl(var(--theme-fg-200) / <alpha-value>)",
300: "hsl(var(--theme-fg-300) / <alpha-value>)",
400: "hsl(var(--theme-fg-400) / <alpha-value>)",
500: "hsl(var(--theme-fg-500) / <alpha-value>)",
dark: {
100: "hsl(var(--theme-fg-dark-100) / <alpha-value>)",
200: "hsl(var(--theme-fg-dark-200) / <alpha-value>)",
300: "hsl(var(--theme-fg-dark-300) / <alpha-value>)",
400: "hsl(var(--theme-fg-dark-400) / <alpha-value>)",
500: "hsl(var(--theme-fg-dark-500) / <alpha-value>)",
},
},
bg: {
100: "hsl(var(--theme-bg-100) / <alpha-value>)",
200: "hsl(var(--theme-bg-200) / <alpha-value>)",
300: "hsl(var(--theme-bg-300) / <alpha-value>)",
400: "hsl(var(--theme-bg-400) / <alpha-value>)",
500: "hsl(var(--theme-bg-500) / <alpha-value>)",
dark: {
100: "hsl(var(--theme-bg-dark-100) / <alpha-value>)",
200: "hsl(var(--theme-bg-dark-200) / <alpha-value>)",
300: "hsl(var(--theme-bg-dark-300) / <alpha-value>)",
400: "hsl(var(--theme-bg-dark-400) / <alpha-value>)",
500: "hsl(var(--theme-bg-dark-500) / <alpha-value>)",
},
},
},
fontFamily: {
rubik: ["Rubik Variable"],
},
},
},
plugins: [require("tailwind-scrollbar")],
};