-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
85 lines (85 loc) · 1.82 KB
/
Copy pathtailwind.config.js
File metadata and controls
85 lines (85 loc) · 1.82 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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
plugins: [require("@tailwindcss/typography")],
theme: {
screens: {
sm: "640px",
md: "1024px",
lg: "1300px",
xl: "1580px",
"2xl": "2000px",
},
extend: {
boxShadow: {
rainbow:
"0 0 0 10px #ff0000,0 0 0 20px #ff7700,0 0 0 30px #FFDD00,0 0 0 40px #00FF00,0 0 0 50px #0000FF,0 0 0 60px #C77DF3,0 0 0 70px #8A2BE2",
},
fontFamily: {
sans: ["Lato", "sans-serif"],
heading: ["Roboto", "sans-serif"],
},
colors: {
blue: {
100: "#72c1df",
200: "#5bb7d9",
300: "#43add4",
400: "#2ca2ce",
500: "#1498c9",
600: "#1289b5",
700: "#107aa1",
800: "#0e6a8d",
900: "#0c5b79",
},
gold: {
light: "#ddbf5f",
base: "#d4af37",
dark: "#aa8c2c",
},
},
},
fontFamily: {
roboto: ["Roboto"],
lato: ["Lato"],
inter: ["Inter"],
},
fontSize: {
h1: [
"32px",
{
lineHeight: "38px",
letterSpacing: "0.8px",
},
],
h2: [
"28px",
{
lineHeight: "24px",
},
],
h3: [
"20px",
{
lineHeight: "23px",
},
],
h4: [
"16px",
{
lineHeight: "19px",
},
],
p: [
"16px",
{
lineHeight: "24px",
},
],
tinyText: ["14px", { lineHeight: "16.41px" }],
},
fontWeight: {
normal: 400,
medium: 500,
bold: 700,
},
},
}