-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
104 lines (100 loc) · 2.9 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'media', // or 'media' or 'class'
theme: {
extend: {
screens:{
"small":"375px",
"xs" :"400px",
},
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
height: {
lg: '30rem',
xl:'34rem',
big:'40rem',
},
spacing:{
'18':'4.5rem',
"85":"21.5rem",
'90':"23rem",
"97":"28rem",
'99': "32rem",
'100':"33rem",
'104':"38rem",
},
colors: {
transparent: 'transparent',
current: 'currentColor',
W3GButtonColor:{
light: '#7BE0D6',
DEFAULT: '#7BE0D6',
dark: '#7BE0D6',
},
W3GBG: {
light: '#151515',
DEFAULT: '#151515',
dark: '#151515',
},
W3GNavigationBorder: {
light: '#222222',
DEFAULT: '#222222',
dark: '#222222',
},
W3GInfoBG: {
light: '#262626',
DEFAULT: '#262626',
dark: '#262626',
},
W3GInfoBorderBG: {
light: '#343434',
DEFAULT: '#343434',
dark: '#343434',
},
W3GTopBG: {
light: '#131414',
DEFAULT: '#131414',
dark: '#131414',
},
W3G1: {
light: '#DB5E7F',
DEFAULT: '#DB5E7F',
dark: '#DB5E7F',
},
W3G2: {
light: '#876BD2',
DEFAULT: '#876BD2',
dark: '#8E6ACA',
},
W3G3: {
light: '#6E93E8',
DEFAULT: '#6E93E8',
dark: '#6E93E8',
},
custom:{
DEFAULT:'#8861D1',
light:"#8861D1",
dark:"#8861D1",
},
multipay:{
DEFAULT:'#CECECE',
light:"#CECECE",
dark:"#CECECE",
}
},
},
variants: {
extend: {},
},
},
plugins: [
// require('flowbite/plugin')
require('tailwind-scrollbar'),
require('@tailwindcss/line-clamp'),
],
variants: {
scrollbar: ['rounded']
}
}