-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
118 lines (109 loc) · 2.55 KB
/
tailwind.config.js
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
108
109
110
111
112
113
114
115
116
117
118
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
theme: {
screens: {
mobile: { max: '767px' },
tablet: { max: '1023px' },
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1440px',
xxl: '1680px',
hd: '1920px',
},
colors: {
primary: '#F9FF73',
secondary: '#78DCE8',
transparent: 'transparent',
current: 'currentColor',
black: '#000000',
white: '#F0F2DA',
yellow: '#F9FF73',
orange: '#F7AF39',
pink: '#FF6188',
green: '#A9DC76',
violet: '#AB9DF2',
blue: '#78DCE8',
discord: '#4554E9',
body: '#9D9E91',
bodyDark: '#6A6B63',
bg: {
lightest: '#F4F4EA',
lighter: '#313442',
light: '#1E212B',
DEFAULT: '#141721',
dark: '#06080F',
},
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
container: {
center: true,
screens: {
lx: '1320px',
},
padding: {
DEFAULT: '1rem',
},
},
extend: {
backgroundImage: {
gradientDark: 'linear-gradient(180deg, #06080F 0%, rgba(6, 8, 15, 0) 100%)',
gradientDarkReverse: 'linear-gradient(180deg, rgba(6, 8, 15, 0) 0%, #06080F 100%)',
w3Warn:
'linear-gradient(260deg, #F9FF73 0%, #78DCE8 20.31%, #F7AF39 39.58%, #FF6188 59.37%, #A9DC76 79.17%, #AB9DF2 100%)',
},
borderWidth: {
1: '1px',
3: '3px',
},
boxShadow: {
black: '0px 2px 4px rgba(0, 0, 0, 0.12)',
light: '0px 0px 4px rgba(240, 242, 218, 0.64)',
},
gridTemplateColumns: {
billing: 'repeat(auto-fill, minmax(23rem, 1fr))',
services: 'repeat(auto-fit, minmax(280px, 1fr))',
nft: 'repeat(auto-fill, minmax(220px, 1fr))',
nftSmall: 'repeat(auto-fill, minmax(120px, 1fr))',
assetHub: 'minmax(320px, 580px) minmax(80px, 420px)',
},
scale: {
10: '0.1',
20: '0.2',
30: '0.3',
40: '0.4',
60: '0.6',
70: '0.7',
80: '0.8',
90: '0.9',
},
zIndex: {
1: 1,
2: 2,
3: 3,
4: 4,
5: 5,
6: 6,
7: 7,
8: 8,
9: 9,
},
},
},
content: [
`components/**/*.{vue,js}`,
`layouts/**/*.vue`,
`pages/**/*.vue`,
`composables/**/*.{js,ts}`,
`plugins/**/*.{js,ts}`,
`App.{js,ts,vue}`,
`app.{js,ts,vue}`,
],
corePlugins: {
preflight: false,
},
plugins: [],
};