-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
67 lines (64 loc) · 1.83 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./app/Http/Livewire/**/*.php",
'./vendor/filament/**/*.blade.php',
],
theme: {
screens: {
'xl': "1440px",
'lg': "1200px",
'md': "1024px",
'sm': "768px",
'xs': "480px",
},
extend: {
colors: {
danger: colors.rose,
success: colors.green,
warning: colors.yellow,
primary: {
100: "#d1d3dc",
200: "#a3a6b9",
300: "#747a97",
400: "#464d74",
500: "#182151",
600: "#131a41",
700: "#0e1431",
800: "#0a0d20",
900: "#050710"
},
'secondary': {
'50': '#fff1f1',
'100': '#ffe1e1',
'200': '#ffc7c7',
'300': '#ffa0a0',
'400': '#ff6464',
'500': '#f83b3b',
'600': '#e51d1d',
'700': '#c11414',
'800': '#a01414',
'900': '#841818',
},
},
fontFamily: {
'sans': ['Roboto', ...defaultTheme.fontFamily.sans],
},
container: {
center: true,
padding: "20px",
},
},
},
safelist: [
'mt-[130px]',
],
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms')
],
};