-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtailwind.config.js
48 lines (46 loc) · 1.28 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./App.{js,jsx,ts,tsx}',
'./app/**/*.{js,jsx,ts,tsx}',
// "./app4/**/*.{js,jsx,ts,tsx}",
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.neutral,
green: colors.green,
red: colors.red,
blue: {
50: '#C1C7DB',
100: '#B4BBD3',
200: '#9AA4C4',
300: '#818DB5',
400: '#6776A6',
500: '#546290',
600: '#455176',
700: '#363F5C',
800: '#272E43',
900: '#181C29',
950: '#0E1017',
},
gold: {
50: '#FFFCF5',
100: '#ffebc7',
200: '#ffdf8f',
300: '#ffd24d',
400: '#ffcb1f',
500: '#f9b806',
600: '#dea002',
700: '#b77f06',
800: '#92680c',
900: '#785b0d',
950: '#453802',
},
},
},
};