-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.js
136 lines (136 loc) · 2.73 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
extend: {
rotate: {
75: '75deg',
},
},
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./app.vue',
'./error.vue',
],
safelist: [
'btn-primary',
'btn-dark',
'btn-secondary',
'btn-terciary',
'btn-disabled',
],
theme: {
screens: {
lg: { max: '1600px' },
md: { max: '1200px' },
sm: { max: '706px' },
xs: { max: '350px' },
},
extend: {
fontFamily: {
title: ['Outfit', 'sans-serif'],
},
// fontSize: {
// "9xl": "6.875rem",
// "8xl": "5.625rem",
// "4xl": "2.5rem",
// "3xl": "1.75rem"
// }
},
colors: {
white: {
50: '#ffffff',
100: '#efefef',
200: '#dcdcdc',
300: '#bdbdbd',
400: '#989898',
500: '#7c7c7c',
600: '#656565',
700: '#525252',
800: '#464646',
900: '#3d3d3d',
950: '#292929',
},
gray: {
50: '#f6f6f6',
100: '#e7e7e7',
200: '#d1d1d1',
300: '#b0b0b0',
400: '#888888',
500: '#707070',
600: '#5d5d5d',
700: '#4f4f4f',
800: '#454545',
900: '#3d3d3d',
950: '#262626',
},
black: {
50: '#f6f6f6',
100: '#e7e7e7',
200: '#d1d1d1',
300: '#b0b0b0',
400: '#888888',
500: '#6d6d6d',
600: '#5d5d5d',
700: '#4f4f4f',
800: '#454545',
900: '#3d3d3d',
950: '#232323',
},
'wit-blue': {
50: '#ebfffe',
100: '#cefffe',
200: '#a2feff',
300: '#63fafd',
400: '#1cecf4',
500: '#00e2ed',
600: '#03a6b7',
700: '#0a8494',
800: '#126978',
900: '#145765',
950: '#063a46',
},
},
fontFamily: {
sans: ['Poppins', 'sans-serif'],
},
borderRadius: {
none: '0',
sm: '.125rem',
DEFAULT: '.25rem',
lg: '.5rem',
full: '9999px',
},
spacing: {
xs: '4px',
sm: '8px',
md: '16px',
'md-alt': '24px',
lg: '32px',
xl: '40px',
'2xl': '64px',
'3xl': '80px',
'sm-x-screen': '15vw',
'md-x-screen': '50vw',
'2-md-x-screen': '70vw',
'lg-x-screen': '90vw',
'xl-x-screen': '100vw',
'sm-y-screen': '15vh',
'md-y-screen': '50vh',
'2-md-y-screen': '70vh',
'lg-y-screen': '90vh',
'xl-y-screen': '100vh',
},
opacity: {
0: '0',
20: '0.2',
40: '0.4',
60: '0.6',
80: '0.8',
100: '1',
},
},
plugins: [],
}