-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
79 lines (78 loc) · 1.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{html,ts}"],
darkMode: "class",
important: true,
content: ["./src/**/*.{html,ts, scss}"],
theme: {
backdropFilter: {
none: "none",
blur: "blur(20px)",
},
extend: {
fontSize: {
headline: "1.75rem",
},
letterSpacing: {
headline: "0.045em",
},
maxWidth: {
iPhone13: "390px",
iPhone11: "375px",
Android: "412px",
},
width: {
85: "22rem",
},
height: {
iPhone11: "812px",
iPhone13: "844px",
Android: "823px",
"edit-sidebar": "93vh",
},
fontFamily: {
quicksand: ["Quicksand", ...defaultTheme.fontFamily.sans],
noir: ["noir", ...defaultTheme.fontFamily.sans],
},
backgroundColor: {
ctdark: "#261E45",
},
colors: {
"mat-toolbar": "#111827",
blueprint: "#5094FF",
ctdark: "#261E45",
ctlight: "#3958FF",
primaryblue: "#3589F9",
purpleblack: "#1A152E",
lighterblue: "#62B4FF",
yellowpill: "#FEEC4B",
secondarydark: "#141414",
"ct-light-primary": "#fafafa",
"ct-light-secondary": "#e5e5e5",
"ct-light-accent-one": "#cecece",
"ct-light-accent-two": "#dbdade",
"ct-light-icon": "#1a152e",
"ct-dark-blue": "#1e6fdb",
"ct-blue": "#3580f0",
"ct-light-blue": "#62b4ff",
"ct-dark-purple": "#654cff",
"ct-yellow": "#feec4b",
"ct-emerald": "#19a9a5",
alabaster: "#edeade",
beige: "#f5f5dc",
"bone-white": "#f9f6ee",
},
boxShadow: {
"3xl": "0 35px 60px -15px rgba(0, 0, 0, 0.3)",
},
fontWeight: {
"medium-light": 400,
},
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: "class",
}),
],
};