-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
58 lines (56 loc) · 1.7 KB
/
tailwind.config.js
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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const colors = require("tailwindcss/colors");
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
export default {
content: ["src/**/*.{html,js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
placeSelf: {
"start-end": "start end",
},
colors: {
veryDark: "#080808",
background: "#111111",
primary: colors.amber["700"],
secondary: colors.neutral,
slate: colors.slate,
gray: colors.gray,
neutral: {
...colors.neutral,
800: "#282828",
900: "#1d1d1d",
},
stone: colors.stone,
red: colors.red,
lime: colors.lime,
orange: colors.orange,
pink: colors.pink,
purple: colors.purple,
yellow: {
...colors.yellow,
400: "#F1D302",
},
green: {
...colors.green,
500: "#7EF049",
600: "#65c53a",
700: "#469123",
800: "#397a1b",
900: "#255908",
},
cyan: colors.cyan,
sky: colors.sky,
blue: {
...colors.blue,
500: "#4287f5",
},
},
animation: {
"spin-slow": "spin 1.5s linear infinite",
},
},
},
plugins: [],
};