-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
38 lines (36 loc) · 1.08 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Barlow", ...defaultTheme.fontFamily.sans],
display: ["Bungee", ...defaultTheme.fontFamily.sans],
},
colors: {
primary: colors.rose[900],
secondary: colors.cyan[800],
gradientStart: colors.orange[400],
gradientEnd: colors.rose[900],
},
dropShadow: {
block: [
"3px 3px 0 rgba(255, 255, 255, 1)",
"-1px -1px 0 rgba(255, 255, 255, 1)",
" 1px -1px 0 rgba(255, 255, 255, 1)",
"-1px 1px 0 rgba(255, 255, 255, 1)",
" 1px 1px 0 rgba(255, 255, 255, 1)",
],
highlight: [
"-1px -1px 0 rgba(255, 255, 255, 1)",
" 1px -1px 0 rgba(255, 255, 255, 1)",
"-1px 1px 0 rgba(255, 255, 255, 1)",
" 1px 1px 0 rgba(255, 255, 255, 1)",
],
},
},
},
plugins: [],
};