-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
62 lines (59 loc) · 1.76 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
"./resources/**/*.js",
"./resources/**/*.vue",
"./node_modules/flowbite/**/*.js",
"./layouts/**/*.html",
"./content/**/*.md",
"./content/**/*.html",
"./src/**/*.js",
],
darkMode: 'class',
variants: {
scrollbar: ['dark']
},
theme: {
screens: {
xs: '320px',
sm: '480px',
md: '768px',
lg: '1024px',
xl: '1200px',
xxl: '1400px',
},
dropShadow: {
'md2': '0 4px 3px rgba(0, 0, 0, 0.2)',
'md2c': '0 0px 2px rgba(0, 0, 0, 0.2)',
'md5': '0 0px 5px rgba(0, 0, 0, 0.3)'
},
// colors: {
// 'blue': '#1fb6ff',
// 'purple': '#7e5bef',
// 'pink': '#ff49db',
// 'orange': '#ff7849',
// 'green': '#13ce66',
// 'yellow': '#ffc82c',
// 'gray-dark': '#273444',
// 'gray': '#8492a6',
// 'gray-light': '#d3dce6',
// },
// fontFamily: {
// sans: ['Graphik', 'sans-serif'],
// serif: ['Merriweather', 'serif'],
// },
// extend: {
// spacing: {
// '128': '32rem',
// '144': '36rem',
// },
// borderRadius: {
// '4xl': '2rem',
// }
// }
},
plugins: [ require('tailwind-scrollbar'), require('flowbite/plugin'),require('@tailwindcss/forms')]
};