-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
57 lines (53 loc) · 1.5 KB
/
tailwind.config.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
46
47
48
49
50
51
52
53
54
55
56
57
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.gray,
red: colors.red,
yellow: colors.amber,
green: colors.emerald,
blue: colors.blue,
indigo: colors.indigo,
purple: colors.violet,
pink: colors.pink,
// custom
primary: "#ae0c06",
secondary: "#1b1b1b",
"dark-100": "#323232",
"dark-200": "#303233",
"dark-300": "#27272a",
"dark-400": "#262830",
"dark-500": "#222222",
"dark-600": "#101010",
light: "#f5f5f6",
highLight: "#ae0c06db",
"activity-bg": "var(--activity-bg)",
"editor-fg": "var(--editor-fg)",
"editor-bg": "var(--editor-bg)",
"explorer-fg": "var(--explorer-fg)",
"explorer-bg": "var(--explorer-bg)",
"sidebar-fg": "var(--sidebar-fg)",
"sidebar-bg": "var(--sidebar-bg)",
"off-white": "var(--off-white)",
},
},
},
plugins: [],
safelist: [
{
pattern: /grid-cols-/,
variants: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"],
},
{
pattern: /bg-(purple|indigo|green|blue)-(100|200|300)/,
},
],
};