generated from EOEPCA/um-service-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 940 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
41
42
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
gray: colors.gray,
green: colors.green,
yellow: colors.yellow,
cyan: colors.cyan,
red: colors.red,
sky: colors.sky,
violet: colors.violet,
rose: colors.rose,
black: colors.black,
white: colors.white,
orange: colors.orange,
blue: colors.blue,
primary: {
magenta: "#EF2B89",
blue: "#6036F5",
white: "#ffffff",
black: "#23272f"
},
secondary: {
black: "#000000",
white: "#DADADA",
blue: "#3397c9"
}
},
fontFamily: {
'lato': ["Lato", "sans-serif"],
'lexend': ["Lexend", "sans-serif"]
},
extend: {},
},
plugins: [],
}