-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (51 loc) · 1.56 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'dark': "#181A20",
'dark2': "#2C2C2C",
'grey': "#5F6368",
'grey2': "#737373",
'greyWhite': "#dcd7fe",
'greyWhite2': "#eeebfe",
'deleteRed': "#e04a43",
'successGreen': "#63ad0e",
'green': "#4f9b83",
'green2': "#19fa4a",
'orange': '#ffaa0e',
'orange2': '#ffb52e',
'orange3': '#fca300',
'orange4': '#fac25a',
'purple': '#663399',
'purple2': '#7c4fa8',
'transparent': '#f2f7ff',
'transcard': '#e0eaff;'
},
fontFamily: {
'author': 'Author'
},
backgroundImage: {
'accountProfilePattern': "url('/src/assets/images/profile-account-pattern.svg')"
},
screens: {
"mobileDeviceOnly": { "min": "300px", "max": "799px" },
"mobileDeviceLesserThan500": { "min": "300px", "max": "499px" },
"smallerDevice": { "min": "300px", "max": "399px" },
"smallDevice": { "min": "350px", "max": "1024px" },
"semiSmallDevice": { "min": "351px", "max": "399px" },
"bonusDevice": { "min": "400px", "max": "499px" },
"aboveBonusDevice": { "min": "800px" },
"generalDevice": { "max": "1024px" },
"mediumDevice": { "min": "500px", "max": "1024px" },
"tablet": { "min": "767px", "max": "1024px" },
"largeDevice": { "min": "1001px" },
},
},
},
plugins: [],
}