forked from commitglobal/WeVote4EU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.4 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
export default {
content: [
//,
'./app/Livewire/**/*.php',
'./app/View/Components/**/*.php',
'./resources/views/**/*.blade.php',
],
theme: {
container: ({ theme }) => ({
center: true,
padding: {
DEFAULT: '1rem',
sm: '1.5rem',
lg: '2rem',
},
}),
extend: {
colors: {
primary: {
50: '#edf6fa',
100: '#dcecf5',
200: '#accee6',
300: '#81aed6',
400: '#376fb8',
500: '#003399',
600: '#002c8a',
700: '#002173',
800: '#00185c',
900: '#001045',
950: '#00092b',
},
secondary: {
50: '#fffef2',
100: '#fffce6',
200: '#fff8bf',
300: '#fff199',
400: '#ffe14d',
500: '#ffcc00',
600: '#e6b000',
700: '#bf8600',
800: '#996100',
900: '#734300',
950: '#4a2600',
},
},
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};