-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
76 lines (75 loc) · 1.57 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
module.exports = {
content: {
relative: true,
files: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
},
theme: {
screens: {
'sm': '640px',
'md': '768px',
'tablet': '850px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
'3xl': '1921px',
},
extend: {
colors: {
gray: {
extraLight: '#F5F6FA',
light: '#F0F1F7',
dark: '#F1F3F6',
extraDark: '#EAEBF3',
},
blue: {
dark: "#0E0B3D",
normalNeon: '#3461fd',
normal: '#3259E8',
light: '#F7F8FD',
},
bubble: '#DAE3F0',
tile: {
title: '#0E0B3D',
content: '#6B7280',
background: '#F7F8FB'
},
brand: '#527ABA',
website: {
normal: '#5379F6',
light: '#7C9CFC',
extra_light: '#E2EAFF',
dark: '#4865D5',
},
footer: {
dark: '#044088',
light: '#015FC8',
},
k1: '#FF5555',
vita: '#9676F9',
gtb: '#F9C83B',
carbon: '#F39200',
},
fontFamily: {
sora: ['Sora', 'sans-serif'],
montserrat: ['Montserrat'],
poppins: ['Poppins'],
},
lineHeight: {
'7.5': '30px',
},
},
listStyleType: {
square: 'square',
decimal: 'decimal',
alpha: 'lower-alpha',
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
};