-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
62 lines (61 loc) · 1.85 KB
/
tailwind.config.js
File metadata and controls
62 lines (61 loc) · 1.85 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
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
module.exports = {
darkMode: "class",
content: [
"./src/**/*.vue",
],
theme: {
fontFamily: {
sans: ["Inter var", ...defaultTheme.fontFamily.sans]
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
red: colors.red,
white: colors.white,
gray: colors.gray,
indigo: colors.indigo,
yellow: colors.yellow,
blue: colors.blue,
pink: colors.pink,
green: colors.green,
slate: colors.slate,
orange: colors.amber,
"sn-primary": "var(--sn-primary)",
"sn-secondary": "var(--sn-secondary)",
"sn-transparent": "var(--sn-transparent)",
"sn-accent": "var(--sn-accent)",
"sn-accent-lighter": "var(--sn-accent-lighter)",
"sn-text": "var(--sn-text)",
"mana-red": {
"50": "#FBF4F4",
"100": "#F7E9E9",
"200": "#EBC8C8",
"300": "#DFA6A7",
"400": "#C76464",
"500": "#AF2122",
"600": "#9E1E1F",
"700": "#691414",
"800": "#4F0F0F",
"900": "#350A0A"
},
"mana-blue": {
"50": "#F6F8FA",
"100": "#ECF1F5",
"200": "#D0DCE7",
"300": "#B3C7D9",
"400": "#7A9CBC",
"500": "#41729F",
"600": "#3B678F",
"700": "#27445F",
"800": "#1D3348",
"900": "#142230"
},
}
},
plugins: [
require("@tailwindcss/forms")
]
};