-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
49 lines (49 loc) · 1.37 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
fontSize: {
xxs: ["0.625rem", { lineHeight: "120%", letterSpacing: "0.03em" }],
xs: ["0.75rem", { lineHeight: "120%", letterSpacing: "0.03em" }],
s: ["0.875rem", { lineHeight: "120%", letterSpacing: "0.03em" }],
m: ["1rem", { lineHeight: "120%", letterSpacing: "0.03em" }],
l: ["1.125rem", { lineHeight: "120%", letterSpacing: "0.03em" }],
xl: ["1.25rem", { lineHeight: "120%", letterSpacing: "0.03em" }],
xxl: ["1.5rem", { lineHeight: "120%", letterSpacing: "0.03em" }],
title: ["3.5rem", { lineHeight: "200%", letterSpacing: "0.03em" }],
},
extend: {
colors: {
primary: {
200: "#a58bf4",
300: "#987af3",
400: "#8b6af1",
500: "#7f5af0",
},
background: {
light: {
primary: "#fffffe",
secondary: "#f2f2f1",
},
dark: {
primary: "#16161a",
secondary: "#242629",
},
},
paragraph: {
dark: "#94a1b2",
light: "#2d334a",
},
headline: {
dark: "#fffffe",
light: "#272343",
},
},
boxShadow: {
jumpy: `4px 4px 0 0`,
},
},
},
plugins: [],
darkMode: "class",
};