forked from mearashadowfax/ScrewFast
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.mjs
47 lines (46 loc) · 1.18 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
/** @type {import('tailwindcss').Config} */
import colors from 'tailwindcss/colors';
export default {
content: [
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
"./node_modules/preline/preline.js",
],
darkMode: "class",
theme: {
colors: {
white: "#ffffff",
neutral: colors.neutral,
primary: {
black: "#000000",
yellow: "#FFC24A",
orange: "#FF5836",
green: "#6EC770",
blue: "#2D83F5",
},
secondary: {
beige: "#EBDED4",
teal: "#4DA29A",
},
neutral: {
...require('tailwindcss/colors').neutral,
},
gray: require('tailwindcss/colors').gray,
indigo: require('tailwindcss/colors').indigo,
red: require('tailwindcss/colors').red,
zinc: require('tailwindcss/colors').zinc,
},
extend: {
fontFamily: {
onest: ['"Onest Bold"', 'sans-serif'],
paragraph: ['"Paragraph font"', 'sans-serif'],
light: ['"Light"', 'sans-serif'],
normal: ['"Book,Normal"', 'sans-serif'],
},
},
},
plugins: [
require("tailwindcss/nesting"),
require("preline/plugin"),
require("@tailwindcss/forms"),
],
};