-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
47 lines (46 loc) · 1.05 KB
/
tailwind.config.mjs
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
import defaultTheme from "tailwindcss/defaultTheme";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
typography: {
DEFAULT: {
css: {
"code::before": {
content: '""',
},
"code::after": {
content: '""',
},
},
},
},
textShadow: {
"3d": "2.75px 2.75px 0 #fdc13a",
},
fontFamily: {
sans: ["Montserrat", ...defaultTheme.fontFamily.sans],
},
colors: {
green: {
50: "#f0fdf4",
100: "#dbfde7",
200: "#baf8d1",
300: "#84f1ad",
400: "#47e181",
500: "#1ec95f",
600: "#13a64b",
700: "#117839", // base color
800: "#146735",
900: "#13542e",
950: "#042f17",
},
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("tailwindcss-textshadow"),
],
};