-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.ts
75 lines (74 loc) · 2.15 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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"node_modules/@bitcoin-dev-project/bdp-ui/dist/**/*.{js,mjs,jsx,ts,tsx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic": "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
gray: {
"custom-100": "#FAFAFA",
"custom-200": "#858585",
"custom-300": "#B5B5B5",
"custom-400": "#BFBFBF",
"custom-500": "#EBEBEB",
"custom-600": "#A3A3A3",
"custom-700": "#F0F0F0",
"custom-800": "#808080",
"custom-900": "#F7F7F7",
"custom-1000": "#656565",
"custom-1100": "#4D4D4D",
"custom-1200": "#CCCCCC",
"custom-1300": "#E6E6E6",
"custom-1400": "#ACACAC",
"custom-1500": "#DBDBDB",
"custom-1600": "#BEBEBE",
"custom-1700": "#737373"
},
blue: {
"custom-100": "#2A58FE",
"custom-200" :"#2A66FF"
},
orange: {
"custom-100": "#F7931A",
"custom-200": "#FFF5EB",
"custom-300": "#E0E0E0",
"custom-400": "#E68108",
"custom-500": "#FEF6EB",
"custom-600": "#FADEB7",
"custom-700": "#FFF0E0",
"custom-800": "#FFF7F0",
"custom-900": "#FFF1E3",
},
purple: {
"custom-100": "#F2F0FF",
"custom-200": "#7B66FF",
},
"custom-black": {
"custom-100": "#292929",
"custom-200": "#202020",
"custom-300": "#464646",
"custom-400": "#525252",
},
"custom-white": {
"custom-100": "#F2F2F2",
},
},
fontFamily: {
brawler: ["var(--brawler-font)"],
inter: ["var(--inter-font)"],
"basis-mono": ["Basis Grotesque Mono Pro"],
},
},
},
plugins: [],
};
export default config;