-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
107 lines (107 loc) · 2.58 KB
/
Copy pathtailwind.config.js
File metadata and controls
107 lines (107 loc) · 2.58 KB
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
const { heroui } = require('@heroui/react')
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/ui/**/*.{js,ts,jsx,tsx}',
'./src/app/**/*.{js,ts,jsx,tsx}',
'./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
zIndex: {
normal: '1',
top: '1000',
popper: '2000',
},
margin: {
module: '1.25rem', // 20px, Vertical spacing of page modules
},
spacing: {
small: '0.3125rem', // 5px
middle: '0.625rem', // 10px
large: '1.25rem', // 20px
},
screens: {
xl: '1200px',
},
},
},
plugins: [
heroui({
themes: {
'assethub-westend': {
colors: {
secondary: {
50: '#ffe1f6',
100: '#ffb1dc',
200: '#ff7ec4',
300: '#ff4cab',
400: '#ff1a93',
500: '#e6007a',
600: '#b4005f',
700: '#820044',
800: '#500029',
900: '#200010',
DEFAULT: '#e6007a',
},
},
},
'bifrost-testnet': {
colors: {
secondary: {
50: '#eee6ff',
100: '#c9b6ff',
200: '#a588f9',
300: '#8158f5',
400: '#5c28f0',
500: '#5A25F0',
600: '#340aa8',
700: '#240779',
800: '#15044b',
900: '#08001e',
DEFAULT: '#5A25F0',
},
},
},
'paseo': {
colors: {
secondary: {
50: '#f1f1fb',
100: '#d7d7de',
200: '#bcbdc3',
300: '#a1a2aa',
400: '#868791',
500: '#6d6e78',
600: '#54565d',
700: '#3c3d44',
800: '#23252b',
900: '#0b0b15',
DEFAULT: '#38393F',
},
},
},
'alephzero': {
colors: {
secondary: {
50: '#d7fffc',
100: '#abfff3',
200: '#7affea',
300: '#48ffe2',
400: '#1affda',
500: '#00e6c0',
600: '#00b396',
700: '#00806b',
800: '#004e40',
900: '#001c15',
DEFAULT: '#00e6c0',
},
},
},
},
}),
require('@tailwindcss/typography'),
],
}