forked from VATSIM-UK/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (57 loc) · 1.74 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
import preset from './vendor/filament/support/tailwind.config.preset';
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
module.exports = {
presets: [preset],
darkMode: 'class',
mode: 'jit',
theme: {
colors: {
// Core
brand: '#25ADE3',
transparent: 'transparent',
black: colors.black,
white: colors.white,
// Filament
current: 'currentColor',
custom: colors.sky,
primary: colors.sky,
secondary: colors.slate,
positive: colors.green,
success: colors.green,
warning: colors.amber,
negative: colors.red,
danger: colors.red,
info: colors.teal,
// Named
blue: colors.sky,
gray: colors.slate,
neutral: colors.neutral,
green: colors.green,
red: colors.red,
amber: colors.amber,
teal: colors.teal,
orange: colors.orange,
yellow: colors.yellow,
lime: colors.lime,
emerald: colors.emerald,
cyan: colors.cyan,
indigo: colors.indigo,
violet: colors.violet,
purple: colors.purple,
fuchsia: colors.fuchsia,
pink: colors.pink,
rose: colors.rose,
}
}, content: {
files: [
'./app/**/*.php',
'./resources/*.php',
'./resources/**/*.php',
"./resources/**/*.blade.php",
'./vendor/filament/**/*.blade.php',
'./storage/framework/views/*.php'
]
},
plugins: [require("@tailwindcss/forms")],
};