-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (44 loc) · 1.27 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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
"./app.vue",
],
theme: {
colors: {
primary: "#F8F207",
secondary: "#3BB7CE",
black: "#000000",
white: "#FFFFFF",
transparent: "transparent",
},
fontFamily: {
display: ["Orbitron", "sans-serif"],
body: ["Ubuntu", "sans-serif"],
},
screens: Object.fromEntries(
Object.entries(defaultTheme.screens).filter(([key]) => key !== "2xl")
),
extend: {
boxShadow: (theme) => ({
solid4: `4px 4px 0px ${theme("colors.secondary")}`,
solid2: `2px 2px 0px ${theme("colors.secondary")}`,
}),
dropShadow: (theme) => ({
solid4: `4px 4px 0px ${theme("colors.secondary")}`,
solid2: `2px 2px 0px ${theme("colors.secondary")}`,
}),
backgroundImage: {
"block-top-pattern": "url('~/assets/images/block-top.svg')",
"block-bottom-pattern": "url('~/assets/images/block-bottom.svg')",
},
},
},
plugins: [],
};