-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
66 lines (65 loc) · 1.5 KB
/
tailwind.config.ts
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import type { Config } from "tailwindcss";
import { nextui } from "@nextui-org/react";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
inter: ['Inter', 'sans-serif'],
openSans: ['Open Sans', 'sans-serif'],
playfair: ['Playfair Display', 'serif'],
roboto:['Roboto', 'serif']
},
colors: {
active: '#06ADFE',
kuning: '#DBA200',
kuning2: '#FFC300',
abu: '#EFF0F6',
abugelap: '#3F3F46',
abumuda:'#A1A1AA',
ungu: `#B680A2`,
ungu2: `#834077`,
pink1: `#FBECEF`,
pink2: `#FDF4F4`,
pink3: `#FDF4F4`,
zinc: `#71717A`,
footer:'#292B22',
biru: '#0364B6',
birumuda: '#E6F1FE',
foreground: "#71717A",
mya: {
50: '#FEF5F5',
100: '#FEF1EC',
500: "#FA9FA4",
600: "#D77482",
},
myg: {
100: '#FFF7CC',
500: '#FFC300',
700: '#B78300',
},
mybeautica: {
500: '#B680A2',
},
myacademy: {
500: '#06ADFE',
},
},
fontSize: {
'10px': '10px',
},
},
},
darkMode: "class",
plugins: [nextui(
{
addCommonColors: true,
}
)],
};
export default config;