-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
89 lines (81 loc) · 2.77 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
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
'./node_modules/@protonemedia/inertiajs-tables-laravel-query-builder/**/*.{js,vue}',
],
darkMode: 'class',
theme: {
mode: 'jit',
container: {
center: true,
padding: '1rem',
},
extend: {
fontFamily: {
sans: ['Roboto ', 'sans-serif', ...defaultTheme.fontFamily.sans],
inter: "'Inter', sans-serif",
},
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: {
lighter: '#bcd7ff',
light: '#599bff',
DEFAULT: '#0ea5e9',
dark: '#818cf8',
darker: '#818cf8',
},
secondary: {
lighter: '#f5f8fa',
light: '#919eab', // '#92929f'
DEFAULT: '#333d48', // '#92929f' // #333d48
dark: '#0a1e35', // #161c24
darker: '#0a1e35', // '#161c24',
},
info: {
lighter: "#D0F2FF",
light: "#74CAFF",
DEFAULT: "#1890FF",
dark: "#161c24",
darker: "#161c24" // text-info-darker
},
success: {
lighter: "#E9FCD4",
light: "#AAF27F",
DEFAULT: "#54D62C",
dark: "#161c24", //#161c24
darker: "#161c24" // #161c24
},
warning: {
lighter: "#FFF7CD",
light: "#FFE16A",
DEFAULT: "#FFC107",
dark: "#e29400",
darker: "#bb6902"
},
danger: {
lighter: "#FFE7D9",
light: "#FFA48D",
DEFAULT: "#FF4842",
dark: "#ed1c15",
darker: "#c8130d"
},
},
boxShadow: {
'md': '0 5px 10px 0px rgba(0, 0, 0, 0.2)',
// 0px 8px 16px 0px rgb(253 169 45 / 24 %)
}
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('tailwind-scrollbar')({ nocompatible: true }),
],
};