-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
81 lines (80 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
const { fontFamily } = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'class',
media: {
sm: '(min-width: 640px)',
md: '(min-width: 1024px)',
lg: '(min-width: 1200px)',
},
theme: {
extend: {
container: {
center: true,
},
colors: {
lightBg: '#ffffff',
lightTxt: '#000000',
white: '#ffffff',
black: '#000000',
primary: {
50: '#f7f2fc',
100: '#f3ebfc',
200: '#dccbf7',
300: '#c4aef2',
400: '#8774e8',
500: '#4240dd',
600: '#3634c7',
700: '#2724a6',
800: '#181785',
900: '#0e0d63',
950: '#060540',
},
secondary: {
50: '#edf3f7',
100: '#dae5ed',
200: '#a7bfd4',
300: '#7d99ba',
400: '#385485',
500: '#0e1f51',
600: '#0b1a4a',
700: '#08133d',
800: '#050e30',
900: '#030924',
950: '#010517',
},
tertiary: {
50: '#fff7fb',
100: '#ffedf6',
200: '#ffd6e9',
300: '#ffbdd6',
400: '#ff8aa7',
500: '#ff5669',
600: '#e6475a',
700: '#bf303e',
800: '#991f2b',
900: '#731119',
950: '#4a070d',
},
neutral: {
50: '#ffffff',
100: '#ffffff',
200: '#fcfcfc',
300: '#fcfcfc',
400: '#fafafa',
500: '#f7f7f7',
600: '#dec8c8',
700: '#ba8c8c',
800: '#945959',
900: '#703232',
950: '#471515',
},
},
spacing: {
128: '32rem',
},
},
},
plugins: [require('@tailwindcss/typography')],
};