-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
110 lines (109 loc) · 2.6 KB
/
tailwind.config.js
File metadata and controls
110 lines (109 loc) · 2.6 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,json,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
animation: {
'spin-slow': 'spin 10s linear infinite',
},
fontSize: {
xxs: '.5rem',
},
colors: {
"portal-cream": {
DEFAULT: "#F6DBBA",
50: "#FEFBF7",
100: "#FDF7F0",
200: "#FBF0E3",
300: "#FAE9D5",
400: "#F8E2C8",
500: "#F6DBBA",
600: "#F3CFA3",
700: "#F0C38D",
800: "#EDB876",
900: "#EAAC60",
},
"portal-orange": {
DEFAULT: "#DB604C",
50: "#FAE8E5",
100: "#F6D9D4",
200: "#EFBBB2",
300: "#E99C90",
400: "#E27E6E",
500: "#DB604C",
600: "#C73E28",
700: "#98301F",
800: "#692115",
900: "#3B120C",
},
"portal-mint": {
DEFAULT: "#74C99E",
50: "#F8FCFA",
100: "#EAF7F0",
200: "#CCEBDC",
300: "#AFE0C7",
400: "#91D4B3",
500: "#74C99E",
600: "#4CB982",
700: "#399366",
800: "#2A6B4A",
900: "#1A432E",
},
"portal-sea": {
DEFAULT: "#317C87",
50: "#97D1D9",
100: "#88CAD4",
200: "#6ABDC9",
300: "#4CAFBE",
400: "#3C97A5",
500: "#317C87",
600: "#296771",
700: "#21535A",
800: "#193E44",
900: "#102A2D",
},
"portal-pink": {
DEFAULT: "#B13353",
50: "#E9B3C0",
100: "#E4A3B3",
200: "#DB8399",
300: "#D26380",
400: "#C94466",
500: "#B13353",
600: "#912A44",
700: "#722135",
800: "#521826",
900: "#320E18",
},
"portal-purple": {
DEFAULT: "#5E2052",
50: "#C658B1",
100: "#C24BAB",
200: "#AE3B98",
300: "#933280",
400: "#792969",
500: "#5E2052",
600: "#531C48",
700: "#47183E",
800: "#3C1434",
900: "#30102A",
},
"portal-blue": {
DEFAULT: "#271854",
50: "#8267D4",
100: "#7355CE",
200: "#5937BF",
300: "#482C9B",
400: "#382278",
500: "#271854",
600: "#211548",
700: "#1C113C",
800: "#160E30",
900: "#110A24",
},
"portal-blackish": "#1a1016",
},
},
},
plugins: [require("@tailwindcss/forms")],
};