This repository has been archived by the owner on May 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
tailwind.config.js
66 lines (65 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
66
const colors = require("tailwindcss/colors");
module.exports = {
// mode: 'jit',
purge: [
"./components/**/*.{vue,js,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
],
darkMode: false,
theme: {
boxShadow: {
//from vuetify .elevation-2 https://vuetifyjs.com/en/styles/elevation/#usage
card: "0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)",
},
colors: {
primary: "#324199",
secondary: "#96DCE8",
black: "#2A2A2C",
// dark: {
// // material trio
// primary: "#031525",
// accent: colors.cyan.lighten1,
// secondary: colors.indigo.darken2,
// // alert colors
// info: colors.teal.lighten1,
// warning: colors.amber.base,
// error: colors.deepOrange.accent4,
// success: colors.green.accent3,
// // misc
// alertCard: colors.cyan.lighten4,
// alertButton: colors.cyan.lighten1,
// },
// light: {
// // material trio
// primary: "#031525",
// accent: colors.cyan.lighten3,
// secondary: colors.indigo.darken2,
// // alert colors
// info: colors.teal.darken2,
// warning: colors.orange.darken4,
// error: colors.red.darken4,
// success: colors.green.darken3,
// // misc
// alertCard: colors.cyan.lighten4,
// alertButton: colors.cyan.lighten1,
// },
},
fontFamily: {
sans: ["Montserrat", "sans-serif"],
serif: ["Montserrat", "serif"],
default: ["Montserrat", "Roboto", "sans-serif"],
},
fontSize: {
subtitle: ".78rem",
base: "1.25rem",
h5: "1.12rem",
h4: "1.5rem",
h3: "2rem",
h2: "2.66rem",
h1: "3.33rem",
},
},
};