-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
40 lines (40 loc) · 919 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.html",
"./node_modules/flowbite/**/*.js"],
theme: {
screens: {
small: "0px",
mobile: "375px",
mobileHorSmall: "567px",
mobileHor: "640px",
tablet: "767px",
bigHor: "811px",
vertIpadMini: "820px",
laptop: "976px",
ipad: "1023px",
hd: "1365px",
fhd: "1440px",
},
extend: {
fontFamily: {
robotoMono: "Roboto Mono, monospace",
oswald: "Oswald, sans-serif",
roboto: "Roboto, sans-serif",
prompt: "Prompt, sans-serif"
},
colors: {
verdeLeaf: '#025541',
verdeClaroLeaf: '#029673',
grisLeaf: '#4C4C4C',
offWhite: '#F2F2F2',
offBlack: '#161616',
neonBlue: '#4AE7D9',
deepBlue: '#071e26'
},
},
},
plugins: [
require('flowbite/plugin')
],
};