This repository has been archived by the owner on Jul 4, 2024. It is now read-only.
forked from Paymenter/Paymenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
77 lines (72 loc) · 2.61 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
darkMode: 'class',
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./storage/framework/views/*.php",
'./app/**/*.php',
"./resources/views/**/*.blade.php",
"./themes/**/**/**/*.{blade.php,js,vue,ts,jsx,tsx}",
"./node_modules/flowbite/**/*.js",
'./vendor/rappasoft/laravel-livewire-tables/resources/views/**/*.blade.php',
],
theme: {
// Colors
extend: {
colors: {
//white: "#636B77",
accent: '#CFE2FD',
normal: '#E7F0FE',
button: '#5270fd',
darkbutton: '#2f3949',
darkmodetext: "#cbd5e1",
darkmode: '#1A202C',
darkmodehover: '#2D3748',
darkmode2: '#252D3B',
logo: '#5270fd',
'secondary': {
50: 'var(--secondary-50)',
100: 'var(--secondary-100)',
200: 'var(--secondary-200)',
300: 'var(--secondary-300)',
400: 'var(--secondary-400)',
500: 'var(--secondary-500)',
600: 'var(--secondary-600)',
700: 'var(--secondary-700)',
800: 'var(--secondary-800)',
900: 'var(--secondary-900)',
},
'primary': {
50: 'var(--primary-50)',
100: 'var(--primary-100)',
200: 'var(--primary-200)',
300: 'var(--primary-300)',
400: 'var(--primary-400)',
},
'danger': {
50: 'var(--danger-50)',
100: 'var(--danger-100)',
200: 'var(--danger-200)',
300: 'var(--danger-300)',
400: 'var(--danger-400)',
},
'success': {
50: 'var(--success-50)',
100: 'var(--success-100)',
200: 'var(--success-200)',
300: 'var(--success-300)',
400: 'var(--success-400)',
},
},
fontFamily: {
sans: ["roboto", ...defaultTheme.fontFamily.sans],
},
},
},
variants: {
extend: {
opacity: ["disabled"],
},
},
plugins: [require('@tailwindcss/typography'), require('flowbite/plugin'), require('autoprefixer')],
};