forked from forbole/xion-staking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
46 lines (44 loc) · 1.02 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/features/**/*.{js,ts,jsx,tsx,mdx}",
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
],
plugins: [],
theme: {
extend: {
colors: {
bg: {
400: "#949494",
50: "#FFF",
500: "#474747",
550: "#434040",
600: "#1A1A1A",
},
chain: {
mainnetBg: "#CAF03320",
mainnetFg: "#CAF033",
testnetBg: "#FFAA4A20",
testnetFg: "#FFAA4A",
},
danger: "#D74506",
dangerBg: "#402217",
defaultLogo: "#949494",
success: "#04C700",
successBg: "#04C7001A",
typo: {
100: "#F2F2F2",
125: "#BBBBBB",
150: "#A5A5A5",
200: "#949494",
300: "#8E919A",
600: "#575454",
DEFAULT: "#FFFFFF",
},
},
},
},
};
export default config;