-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
64 lines (60 loc) · 1.5 KB
/
Copy pathtailwind.config.js
File metadata and controls
64 lines (60 loc) · 1.5 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
export default {
content: [
'./**/*.{html,js}',
"./src/**/**/*.{js,jsx,ts,tsx}",
'node_modules/flowbite-react/lib/esm/**/*.js'
],
theme: {
colors: {
dpurp: '#250E47', //Dark Purple
mpurp: '#7E64BE', //Medium Purple
twhite: '#D9D9D9', //Text White
tpurp: '#997FD9', //Text Purple
bwhite: '#FFF4F4', //Background White
bgrey: '#BDBDBD', //Background Grey
tgreen: '#698C3B', //Text Green
tred: '#D75353', //Text Red
//Default Colors
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
rose: colors.rose,
pink: colors.pink,
fuchsia: colors.fuchsia,
purple: colors.purple,
violet: colors.violet,
indigo: colors.indigo,
blue: colors.blue,
sky: colors.sky,
cyan: colors.cyan,
teal: colors.teal,
emerald: colors.emerald,
green: colors.green,
lime: colors.lime,
yellow: colors.yellow,
amber: colors.amber,
orange: colors.orange,
red: colors.red,
slate: colors.slate,
zinc: colors.zinc,
gray: colors.gray,
neutral: colors.slate,
stone: colors.stone,
},
extend: {
fontFamily: {
'nanum-gothic-coding': ["Nanum Gothic Coding", "monospace"],
},
backgroundImage: {
'bgEstudiante': "url('src/assets/bgEstudiante.png')",
}
}
},
plugins: [
require("daisyui"),
require('flowbite/plugin'),
],
}