-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
91 lines (91 loc) · 2.27 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
"./src/libs/layouts/*.vue",
],
theme: {
screens: {
/**
* Old Names:
* @screen-desktop-large: 1601px;
* @screen-desktop: 1400px;
* @screen-desktop-min: 1280px;
* @screen-tablet-big: 1084px;
* @screen-tablet: 1024px;
* @screen-tablet-header: 940px;
* @screen-tablet-portaint: 820px;
* @screen-tablet-min: 768px;
* @screen-mobile: 576px
*/
xs: "576px",
sm: "768px",
md: "820px",
"md-header": "940px",
lg: "1024px",
"lg-max": "1084px",
xl: "1280px",
"2xl": "1440px",
"3xl": "1601px",
},
colors: {
appBackground: "#f5f5f7",
titleColor: "#222222",
primary: "#005ae5",
primaryActive: "#0067e0",
violet: "#9D00FF",
violetActive: "#a81aff",
portfolio: "#0c5876",
mewBg: "rgba(53,94,236,0.1)",
enkryptBg: "rgba(186,74,255,0.1)",
black: "#000000",
white: "#ffffff",
"white-40": "rgba(255,255,255,0.4)",
info: "rgba(0, 0, 0, 0.7)",
greyLight: "rgba(0,0,0,0.3)",
mewGreenText: "rgba(12,88,118,1)",
error: "rgba(228,12,91,1)",
"error-10": "rgba(228,12,91,0.1)",
"error-7": "rgba(228,12,91,0.07)",
blue: "rgba(22 129,255,1)",
"blue-10": "rgba(22,129,255,0.1)",
"blue-7": "rgba(22,129,255,0.07)",
purple: "rgba(104, 76, 255, 1)",
"purple-10": "rgba(104,76,255,0.1)",
"purple-7": "rgba(104,76,255,0.07)",
},
extend: {
fontSize: {
"s-80": ["80px", "120%"],
"s-64": ["64px", "110%"],
"s-54": ["54px", "120%"],
"s-52": "52px",
"s-40": "40px",
"s-32": "32px",
"s-28": "28px",
"s-17": "17px",
},
lineHeight: {
"p-100": "100%",
"p-110": "110%",
"p-120": "120%",
"p-130": "130%",
"p-140": "140%",
"p-150": "150%",
},
letterSpacing: {
"sp-06": "0.6px",
"sp-01": "0.01em",
},
transitionProperty: {
height: "height",
bg: "background",
},
borderRadius: {
"4xl": "32px",
},
},
},
plugins: [],
};