-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
42 lines (37 loc) · 945 Bytes
/
tailwind.config.mjs
File metadata and controls
42 lines (37 loc) · 945 Bytes
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
import { nextui } from "@nextui-org/react";
import defaultTheme from "tailwindcss/defaultTheme";
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: "#9E13A2",
secondary: "#FB09BB",
error: "#F34378",
warning: "#FDA90B",
violet: "#612BB7",
"blue-magento": "#844ADE",
lighten: "#170A26",
},
backgroundImage: {
"lighten-gradient":
"linear-gradient(360deg, #170A26 0%, #2D1747 126.68%)",
},
fontFamily: {
sans: ["Prompt", ...defaultTheme.fontFamily.sans],
},
container: {
padding: {
DEFAULT: "0.5rem",
sm: "1rem",
},
}
},
},
plugins: [nextui()],
};