-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
93 lines (91 loc) · 2.28 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
container: {
center: true,
padding: '1rem',
screens: {
DEFAULT: '1170px',
},
},
extend: {
fontFamily: {
base: ['Poppins'],
},
fontSize: {
xxs: '12px',
xs: '13px',
sm: '14px',
md: '15px',
lg: '17px',
xl: '18px',
xxl: '19px',
'3xl': '20px',
'4xl': '22px',
'5xl': '24px',
'6xl': '55px',
h2: '30px',
h1: '56px',
newBadge: '24px',
},
colors: {
// colors are written as 'color-shade', for example blue-900-10
section: {
newestates: '#2582c1',
},
icons: {
twitter: '#00a2e5',
facebook: '#006af7',
instagram: '#bc1888',
linkedin: '#0059b1',
youtube: '#FF0000',
},
blue: {
50: '#e9f3f9',
400: '#00a2e5',
500: '#3677F9FF',
700: '#2563EBFF',
800: '#1a3a50',
900: '#052841',
'900-10': '#05284119', // opacity of blue-900
'900-50': '#0528417F',
},
teal: {
500: '#0D9470FF',
},
orange: {
100: '#fdf0ea',
200: '#ffe2d3',
500: '#FF5300FF',
600: '#e84900',
},
red: {
600: '#e21717',
},
gray: {
100: '#f7f7f7',
200: '#e9e9e9',
},
},
boxShadow: {
navbar: '0 10px 10px 0 rgba(0, 0, 0, 0.03)',
'navbar-box': '0 4px 22px 0 rgba(5, 40, 65, 0.1)',
'filter-box': '0 10px 40px 0 rgba(24, 26, 32, 0.07)',
language: '0 0px 20px -1px rgba(0, 0, 0, 0.2)',
nestedLink: '0 4px 22px 0 rgba(5, 40, 65, 0.1)',
section: '0 1px 4px 0 rgba(24, 26, 32, 0.07)',
tooltip: '0 2px 4px rgba(0, 0, 0, 0.3)',
button: '0 2px 8px 0 rgba(0, 0, 0, 0.14)',
comments: '0 4px 22px 0 rgba(0, 0, 0, 0.06)',
blogs: '0 1px 4px 0 rgba(24, 26, 32, 0.07);',
date: '0 6px 15px 0 rgba(64, 79, 104, 0.05)',
},
borderRadius: {
button: '6px',
selectBtn: '10px',
},
},
},
plugins: [],
}