-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (46 loc) · 1.12 KB
/
Copy pathtailwind.config.js
File metadata and controls
49 lines (46 loc) · 1.12 KB
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
import defaultTheme from 'tailwindcss/defaultTheme'
import forms from '@tailwindcss/forms'
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
theme: {
extend: {
colors: {
primary: {
50: '#e6f7ff',
100: '#b3ebff',
200: '#80dfff',
300: '#4dd3ff',
400: '#1ac7ff',
500: '#00a9e0',
600: '#0088b8',
700: '#006690',
800: '#004468',
900: '#002240',
light: '#e8f2ff',
DEFAULT: '#147dd9',
dark: '#0f5ba3',
hover: '#2a8be6',
},
},
fontFamily: {
sans: [
'"Instrument Sans"',
'ui-sans-serif',
'system-ui',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
},
},
plugins: [forms],
}