-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
56 lines (55 loc) · 1.23 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
/** @type {import('tailwindcss').Config} */
const { createThemes } = require('tw-colors');
module.exports = {
content: [
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
],
theme: {
extend: {
fontFamily: {
'sans': ['General Sans', 'sans-serif'],
},
screens: {
'xxs':'390px',
'xs': '480px', // Añadido para dispositivos extra pequeños
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
'3xl': '1920px',
'4xl': '2560px',
'5xl': '3840px',
},
},
},
plugins: [
createThemes({
monochrome: {
'primary': '#272829',
'background': '#FFF6E0',
'accent': '#000000',
},
greenVeige : {
'primary': '#105717',
'background': '#F8F4E1',
'accent': '#1E1E1E',
},
blueVeige: {
'primary': '#0C1844',
'background': '#FFF5E1',
'brand': '#000000',
},
blueRedWine:{
'primary': '#00224D',
'background': '#A0153E',
'brand': '#000000',
},
blueOrange:{
'primary': '#0C1844',
'background': '#FE3C01',
'brand': '#000000',
}
})
],
}