-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
137 lines (134 loc) · 3.11 KB
/
tailwind.config.ts
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import { fontFamily } from "tailwindcss/defaultTheme";
import type { Config } from "tailwindcss";
const config = {
content: [
"./app/**/*.{js,ts,jsx,tsx}", // Note the addition of the `app` directory.
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// https://www.figma.com/file/JOHGaqs67K52ZSj32xF8Bd/Weboldal?node-id=12%3A1075
dark: "#231F20",
darkmode_regular: "#333333",
light: "#F8F8F8",
white: "#FFFFFF",
primary: {
DEFAULT: "#63BC47",
50: "#f4fbf2",
100: "#e6f7e1",
200: "#cfedc5",
300: "#a9dd98",
400: "#7bc563",
500: "#63bc47",
600: "#448b2e",
700: "#376e27",
800: "#2f5823",
900: "#28481f",
950: "#11270c",
},
secondary: {
DEFAULT: "#FFFF3C",
50: "#fcfee8",
100: "#faffc2",
200: "#faff89",
300: "#ffff3c",
400: "#fdf312",
500: "#ecd906",
600: "#ccab02",
700: "#a37b05",
800: "#86600d",
900: "#724e11",
950: "#432a05",
},
},
fontSize: {
h1: [
"32px",
{
fontWeight: "600",
lineHeight: "35px",
},
],
h2: [
"24px",
{
fontWeight: "600",
lineHeight: "26px",
},
],
h3: [
"20px",
{
fontWeight: "600",
lineHeight: "22px",
},
],
h4: [
"16px",
{
fontWeight: "600",
lineHeight: "17px",
},
],
body_large: [
"20px",
{
fontWeight: "400",
lineHeight: "26px",
},
],
body: [
"16px",
{
fontWeight: "400",
lineHeight: "24px",
},
],
label: [
"14px",
{
fontWeight: "400",
lineHeight: "20px",
},
],
},
fontFamily: {
// https://www.figma.com/file/JOHGaqs67K52ZSj32xF8Bd/Weboldal?node-id=12%3A1076
heading: ["var(--font-archivo)", ...fontFamily.sans],
body: ["var(--font-space_grotesk)", ...fontFamily.sans],
label: ["var(--font-space_grotesk)", ...fontFamily.sans],
},
screens: {
sm: "30em",
msm: "40em",
md: "51em",
lg: "70em",
xl: "80em",
"2xl": "96em",
},
maxWidth: {
home: "1492px",
},
minHeight: {
safe_screen: "100svh",
},
opacity: {
text: "0.92",
button: "0.16",
},
blur: {
home: "7px",
},
gridTemplateColumns: {
"timeline-full": "calc(50% - 50px) 100px calc(50% - 50px)",
"timeline-mobile": "100px calc(100% - 100px)",
},
},
},
plugins: [],
} satisfies Config;
export default config;