-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
69 lines (69 loc) · 1.64 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["app/templates/**/*.html", "app/styles/*.css"],
jit: true,
theme: {
fontFamily: {
clan: ["ClanPro", "sans-serif"],
source: ["Source Serif", "serif"],
},
extend: {
backgroundImage: {
"filter-icon": "url('/static/images/Filter.svg')",
},
boxShadow: {
top: "0px -8px 24px 0px rgba(0, 0, 0, 0.32)",
bottom: "0px 0px 16px 0px rgba(0, 0, 0, 0.32)",
toggleButton: "0px 0px 4px 0px rgba(0, 0, 0, 0.16)",
},
colors: {
"corporate-blue": "#1E3791",
"corporate-blue-light": "#495DA5",
"corporate-gray-20": "#DADADA",
"corporate-gray-40": "#B1B2B3",
"corporate-gray-80": "#565656",
"corporate-gray-90": "#3B3B3A",
"light-gray": "#EBECF0",
"page-background": "#F6F6F6",
},
fontSize: {
h1: "2rem",
h2: "1.125rem",
},
lineHeight: {
h1: "2.5rem",
h2: "1.5rem",
},
margin: {
"3/5": "60vh",
hero: "var(--width-hero)",
mobile: "1.5rem",
},
maxWidth: {
hero: "var(--width-hero)",
80: "20rem",
},
minHeight: {
4: "1rem",
},
padding: {
mobile: "1.3rem",
desktop: "4rem",
},
screens: {
desktop: "1280px",
tablet: "768px",
},
translate: {
"x-full": "100%",
"2x-full": "200%",
},
width: {
"2x-hero": "calc(2 * var(--width-hero))",
hero: "var(--width-hero)",
},
},
purge: "app/static/**/*.js",
},
plugins: [],
}