-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
45 lines (42 loc) · 722 Bytes
/
tailwind.config.cjs
File metadata and controls
45 lines (42 loc) · 722 Bytes
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 = {
content: ["./interface/**/*.{svelte,ts,js}"],
theme: {
extend: {
colors: {
gray: {
100: "#ffffff",
200: "#d3cfcf",
500: "#282828",
600: "#1E1E1E",
700: "#141414",
800: "#0a0a0a",
900: "#000000",
},
popup: {
red: "#CC001B",
green: "#28A443",
blue: "#16A3DF",
yellow: "#F5AB00",
magenta: "#9B5094",
},
html: {
gray: "#808080",
},
},
borderRadius: {
xl: "15px",
"2xl": "30px",
},
screens: {
sm: { max: "1650px" },
small: { min: "1200px" },
},
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: "class",
}),
],
}