-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 1.09 KB
/
Copy pathtailwind.config.js
File metadata and controls
37 lines (37 loc) · 1.09 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
elevation1: "#292d39", // bg color of the root panel (main title bar)
elevation2: "#181c20", // bg color of the rows (main panel color)
elevation3: "#373c4b", // bg color of the inputs
accent1: "#0066dc",
accent2: "#007bff",
accent3: "#3c93ff",
highlight1: "#535760",
highlight2: "#8c92a4",
highlight3: "#fefefe",
vivid1: "#ffcc00",
vivid2: "#ffaa00",
vivid3: "#ff8800",
folderWidgetColor: "#8c92a4",
folderTextColor: "#fefefe",
toolTipBackground: "#fefefe",
toolTipText: "#181c20",
},
keyframes: {
waitingAnimation: {
"0%": { transform: "translate3d(0, 0, 0)" },
"50%": { transform: "translate3d(0, 3px, 0)" },
"100%": { transform: "translate3d(0, 0, 0)" },
},
},
boxShadow: {
level1: "0 0 9px 0 #00000088",
},
},
},
plugins: [],
};