-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (50 loc) · 1.22 KB
/
tailwind.config.js
File metadata and controls
51 lines (50 loc) · 1.22 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
/** @type {import('tailwindcss').Config} */
import themer from "tailwindcss-themer";
export default {
content: ["./src/**/*.{html,js,jsx,ts,tsx}"],
theme: {
extend: {},
},
plugins: [
themer({
defaultTheme: {
extend: {
colors: {
primary: "#fea713",
primaryContrast: "#718bb8",
secondary: "#e8441d",
accent: "#e8441d",
light: "#fffeff",
lightMild: "#e7e5e4",
lightMedium: "#a8a29e",
medium: "#78716c",
darkMedium: "#44403c",
darkMild: "#292524",
dark: "#051110",
},
},
},
themes: [
{
name: "darkTheme",
selectors: [".dark-mode"],
extend: {
colors: {
primary: "#fff06b",
primaryContrast: "#4A4A4A",
secondary: "#ccfcfc",
accent: "#ea6394",
light: "#171717",
lightMild: "#232323",
lightMedium: "#2E2E2E",
medium: "#4A4A4A",
darkMedium: "#828282",
darkMild: "#B9B9B9",
dark: "#D5D5D5",
},
},
},
],
}),
],
};