forked from attention-streams/interface
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.93 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./src/**/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
width: {
68: '17rem',
100: '25rem',
104: '26rem',
},
colors: {
primary: '#EF476F',
secondary: '#F59569',
input: '#EFF3F8',
label: '#565656',
black: '#353535',
chips: '#5EBAB0',
gray: '#BFBFBF',
yellowC: '#FFD166',
greenC: '#7FE3CA',
'primary-green': '#56C75B',
'light-gray': '#EBECEF',
'light-gray-2': '#EDF2F3',
'dark-gray': '#757575',
'blue-gray-light': '#E9EFF6',
'primary-light': '#FFE9EE',
'primary-light-2': '#F8F0F4',
'secondary-light': '#FFECE4',
'secondary-light-2': '#F6C7B4',
'disabled-bg': '#C0C0C0',
'disabled-text': '#939393',
},
backgroundImage: {
'token-left': "url('/img/tokenLeft-background.svg')",
gradient: 'linear-gradient(135deg,#5158f6,#822df5 33.76%,#f3a761)',
'gradient-2': 'linear-gradient(92.4deg, #ef476f75 -3.65%, #b64f8987 63.46%, #9254998c 106.47%)',
g1: 'linear-gradient(90.54deg, rgba(239, 71, 111, 0.15) -2.28%, rgba(146, 84, 153, 0.15) 102.51%);',
'presale-header': "url('/img/presale-header.svg')",
'public-sale-header': "url('/img/public-header.svg')",
squircle: "url('../public/squircle.png')",
'gradient-light': "radial-gradient(62.15% 4494.21% at 43.37% 31.6%, rgba(239, 71, 111, 0.1) 0%, rgba(94, 87, 145, 0.1) 100%)",
blob: "url('/img/blob-bg.svg')",
blur: "url('/img/blur-bg.svg')",
},
dropShadow: {
'primary-xl': '0px 8px 18px rgba(81, 88, 246, 0.15)',
},
zIndex: {
100: '100',
},
screens: {
'xxl': '1512px',
},
},
},
// plugins: [require('@tailwindcss/forms'),require('@tailwindcss/aspect-ratio'),],
}