-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
70 lines (70 loc) · 1.67 KB
/
Copy pathtailwind.config.ts
File metadata and controls
70 lines (70 loc) · 1.67 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Arial", "sans-serif"],
serif: ["EVA", "Times New Roman", "serif"],
},
colors: {
// https://uicolors.app/create
"mineral-green": {
DEFAULT: "#365E43",
},
"fresh-green": {
DEFAULT: "#8BD450",
"50": "#f3fbea",
"100": "#e3f7d0",
"200": "#c9efa7",
"300": "#a7e274",
"400": "#8bd450",
"500": "#67b82a",
"600": "#4e921e",
"700": "#3c701b",
"800": "#33591b",
"900": "#2c4c1b",
"950": "#15290a",
},
mirage: {
DEFAULT: "#1D1A2F",
"50": "#f1f3fc",
"100": "#e6e8f9",
"200": "#d2d5f3",
"300": "#b6bbeb",
"400": "#9899e1",
"500": "#857fd5",
"600": "#7265c6",
"700": "#6254ae",
"800": "#51468d",
"900": "#443e71",
"950": "#1d1a2f",
},
amethyst: {
DEFAULT: "#965FD4",
"50": "#faf6fe",
"100": "#f2ebfc",
"200": "#e7dbf9",
"300": "#d5bff3",
"400": "#bb95eb",
"500": "#a16ddf",
"600": "#965fd4",
"700": "#753bb5",
"800": "#643594",
"900": "#522c77",
"950": "#351556",
},
"dark-lavender": {
DEFAULT: "#734F9A",
},
"grey-placeholder": {
DEFAULT: "#545454",
},
},
borderWidth: {
"6": "6px",
},
},
},
plugins: [],
};