-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
theme: {
extend: {
backgroundImage: {
'secondary-gradient': 'linear-gradient(36.92deg, #1C4DA1 20.32%, #0040AE 28.24%)',
'blue-gradient': 'linear-gradient(161.75deg, #1254C5 16.95%, #0040AE 31.1%)',
'count-gradient': 'linear-gradient(150.73deg, #1254C5 24.55%, #0040AE 68.54%)'
},
colors: {
'primary': '#F95C22',
'light-orange': '#f15d22',
'dark-orange': '#B63100',
'hover-orange': '#FB9D7A',
'secondary': '#164194',
'blue-primary': '#40B5D1',
'aqua': '#B1E0E5',
'pearl': '#DBECF0',
'grey': '#E7EAE3',
'grey-2': '#DEDEDE',
'yellow': '#FFD700',
'yellow-2': '#FFF7CC',
'dark-blue': '#1C4DA1',
'hover-blue': '#0A42A1',
'slate': '#5C656D'
},
screens: {
'tablet': '993px',
},
fontSize: {
base: '1.125rem',
},
lineHeight: {
'truly-normal': 'normal', // Custom class for true line-height: normal
},
},
},
plugins: [],
};