-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
58 lines (57 loc) · 1.41 KB
/
tailwind.config.mjs
File metadata and controls
58 lines (57 loc) · 1.41 KB
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
fontFamily: {
sans: ['Gilroy', 'Open Sans Variable', ...defaultTheme.fontFamily.sans],
},
colors: {
dark: {
DEFAULT: '#1c1c1c',
50: '#f6f6f6',
100: '#e7e7e7',
200: '#d1d1d1',
300: '#b0b0b0',
400: '#888888',
500: '#6d6d6d',
600: '#5d5d5d',
700: '#4f4f4f',
800: '#454545',
900: '#3d3d3d',
950: '#1c1c1c',
},
gray: {
DEFAULT: '#e3e0d9',
50: '#f7f6f5',
100: '#edebe7',
200: '#e3e0d9',
300: '#c3bcae',
400: '#aa9f8d',
500: '#998a76',
600: '#8c7c6a',
700: '#756659',
800: '#61554b',
900: '#4f463f',
950: '#2a2420',
},
primary: {
default: '#ff3ea3',
50: '#fef1f8',
100: '#fee5f4',
200: '#ffcaeb',
300: '#ff9fd8',
400: '#ff63bc',
500: '#ff3ea3',
600: '#f0127c',
700: '#d10560',
800: '#ad074f',
900: '#8f0c45',
950: '#580025',
},
},
},
},
plugins: [require('@headlessui/tailwindcss')],
};