-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
59 lines (58 loc) · 1.7 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
import type { Config } from "tailwindcss";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"figma-color-border-primary": "rgba(19, 8, 23, 0.1)",
"figma-color-border-secondary": "rgba(19, 8, 23, 0.05)",
"figma-color-border-accent": "rgba(110, 50, 140, 0.48)",
"figma-color-icons-disabled": "rgba(19, 8, 23, 0.3)",
"figma-color-text-primary": "rgba(19, 8, 23, 0.9)",
"figma-color-text-tertiary": "rgba(19, 8, 23, 0.4)",
"figma-color-text-accent": "rgba(110, 50, 140, 1)",
"figma-color-bg-interactive-primary": "rgba(19, 8, 23, 0.05)",
"figma-color-bg-accent-violet": "rgba(110, 50, 140, 1)",
"figma-color-bg-surface-secondary-accent": "rgba(110, 50, 140, 0.06)",
},
fontSize: {
"figma-text-body-default": [
"15px",
{
lineHeight: "22px",
letterSpacing: "-0.012em",
fontWeight: "500",
},
],
"figma-text-body-accent": [
"15px",
{
lineHeight: "20px",
letterSpacing: "-0.016em",
fontWeight: "600",
},
],
"figma-text-body-caption": [
"13px",
{
lineHeight: "18px",
letterSpacing: "-0.006em",
fontWeight: "500",
},
],
"figma-text-12": [
"12px",
{
lineHeight: "16px",
letterSpacing: "-0.006em",
fontWeight: "500",
},
],
},
boxShadow: {
"figma-drop-shadow": "0px 0px 0px 3px rgba(113, 48, 142, 0.12);",
},
},
},
plugins: [],
} satisfies Config;