-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
"./node_modules/flowbite/**/*.js"
],
theme: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
'Inter': ['Inter', 'sans-serif']
},
extend: {
colors: {
invictus: {
red: '#F21111',
'gray': {
50: '#E6E6E6',
100: '#B5B5B6',
200: '#9D9D9F',
300: '#74767A',
400: '#5C5E63',
500: '#2E3037',
600: '#23262C',
700: '#171A21',
800: '#0e1318',
900: '#090B0E'
},
'red': {
50: '#DCC5C5',
100: '#DEB1B1',
200: '#E19D9D',
300: '#E38989',
400: '#E57575',
500: '#ED3939',
600: '#F54D4D',
700: '#F54141',
800: '#F32828',
900: '#F21111'
}
}
}
},
},
plugins: [
require('flowbite/plugin')
],
}