-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
48 lines (47 loc) · 1.14 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
module.exports = {
content: ["./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {},
//He puesto la primera config de screens
screens: {
xs: "320px",//Porque no se tienen en cuenta los moviles pequeños
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
},
colors: {
"transparent": 'transparent',
"purple": "#3f3cbb",
"light": " #f2f2f2",
"dark": "#0b3762",
"bg-light": "#342618",
"bg-dark-80": "#0b3662e0",
"white": "#ffffff",
"black": "#000000",
"bg-dark": "#ffffff",
"contrast-bg-light": "#0b4da5",
"contrast-bg-dark": "#ffa438",
"links-cta": "#ffa438",
"links-visited": "#8197ba",
"pink": "#ffc0cb",
"neutral": {
100: "#f5f5f5",
200: "#e5e5e5",
300: "#d4d4d4",
400: "#e3e3e3",
500: "#737373",
600: "#525252",
700: "#404040",
800: "#262626",
900: "#171717",
},
},
fontFamily: {
sans: ["Be Vietnam Pro", "sans-serif"],
serif: ["Merriweather", "serif"],
cursive: ["Lobster", "cursive"],
},
},
plugins: [],
}