-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
65 lines (64 loc) · 1.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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
darkMode: 'class',
safelist: [
'sm:max-w-5xl'
],
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
colors: {
'primary': {
50: "#F4F0FF",
100: "#EDE5FF",
200: "#D8C7FF",
300: "#C6ADFF",
400: "#B08FFF",
500: "#9F75FF",
600: "#6929FF",
700: "#4300E0",
800: "#2C0094",
900: "#17004D",
950: "#0B0024"
},
"main": "#9f75ff",
"main-dark": "#6b04fd",
},
boxShadow: theme => ({
outline: '0 0 0 2px ' + theme('colors.indigo.500'),
}),
fill: theme => theme('colors'),
fontSize: {
xxs: "0.6rem",
},
opacity: {
'10': '0.1',
}
},
},
variants: {
extend: {
backgroundColor: ['active'],
}
},
content: [
'./app/**/*.php',
'./resources/**/*.html',
'./resources/**/*.js',
'./resources/**/*.jsx',
'./resources/**/*.ts',
'./resources/**/*.tsx',
'./resources/**/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.vue',
'./resources/**/*.twig',
'./vendor/wire-elements/modal/resources/views/*.blade.php',
'./storage/framework/views/*.php',
],
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}