forked from zgalant/bottleneck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
77 lines (77 loc) · 1.78 KB
/
tailwind.config.js
File metadata and controls
77 lines (77 loc) · 1.78 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
68
69
70
71
72
73
74
75
76
77
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ["./src/renderer/**/*.{js,jsx,ts,tsx}", "./src/renderer/index.html"],
theme: {
extend: {
colors: {
gray: {
900: "#0d1117",
800: "#161b22",
700: "#21262d",
600: "#30363d",
500: "#484f58",
400: "#6e7681",
300: "#8b949e",
200: "#c9d1d9",
100: "#f0f6fc",
},
blue: {
900: "#051d4d",
800: "#0c2d6b",
700: "#0d419d",
600: "#0969da",
500: "#218bff",
400: "#54aeff",
300: "#80ccff",
200: "#b1dfff",
},
green: {
900: "#033a16",
800: "#04505e",
700: "#044f1e",
600: "#0a7534",
500: "#1a7f37",
400: "#2ea043",
300: "#5fd075",
200: "#8fdb9f",
},
red: {
900: "#4d0519",
800: "#6b0c2d",
700: "#9d0d41",
600: "#da0969",
500: "#ff218b",
400: "#ff54ae",
300: "#ff80cc",
200: "#ffb1df",
},
purple: {
900: "#2d1d4d",
800: "#3e2d6b",
700: "#5a419d",
600: "#8256d0",
500: "#a475f9",
400: "#bf95ff",
300: "#d2b3ff",
200: "#e6d6ff",
},
},
fontFamily: {
mono: [
"SF Mono",
"Monaco",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace",
],
},
animation: {
"spin-slow": "spin 2s linear infinite",
"pulse-slow": "pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite",
},
},
},
plugins: [require("@tailwindcss/typography")],
};