-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (38 loc) · 1.02 KB
/
tailwind.config.js
File metadata and controls
40 lines (38 loc) · 1.02 KB
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
/*
* File: tailwind.config.js
* Project: Gull
* File Created: Wednesday, 3rd November 2021 8:57:46 am
* Author: Naime Hossain & ui-lib -> https://ui-lib.com/ (support@ui-lib.com)
* -----
* Last Modified: Sunday, 23rd October 2022 1:14:05 pm
* Modified By: Naime Hossain & ui-lib -> https://ui-lib.com/ (support@ui-lib.com>)
* -----
* Copyright 2019 - 2022 ui-lib , ui-lib ( https://ui-lib.com/ )
*/
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: '#3b82f6',
success: '#10b981',
danger: '#ef4444',
warning: '#f59e0b',
info: '#3b82f6',
light: '#6b7280',
dark: '#202020',
foreground: '#292929',
},
textColor: {
test: '#ef4444',
},
transitionDuration: {
240: '240ms',
},
},
},
plugins: [require('@tailwindcss/forms')],
}