forked from 4thtech/white-label-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
59 lines (58 loc) · 1.3 KB
/
tailwind.config.js
File metadata and controls
59 lines (58 loc) · 1.3 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
59
import { withShurikenUI } from '@shuriken-ui/tailwind';
import colors from 'tailwindcss/colors';
export default withShurikenUI({
darkMode: 'class',
content: [],
theme: {
fontFamily: {
sans: ['Space Grotesk Variable', 'sans-serif'],
heading: ['Space Grotesk Variable', 'sans-serif'],
alt: ['Karla Variable', 'sans-serif'],
mono: [
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Monaco',
'Consolas',
'"Liberation Mono"',
'"Courier New"',
'monospace',
],
},
extend: {
colors: {
primary: {
50: '#faf5ff',
100: '#f3e8ff',
200: '#e9d5ff',
300: '#d8b4fe',
400: '#c084fc',
500: '#a756e2',
600: '#9333ea',
700: '#7e22ce',
800: '#6b21a8',
900: '#581c87',
950: '#3b0764',
},
muted: {
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
300: '#cbd5e1',
400: '#94a3b8',
500: '#64748b',
600: '#33335d',
700: '#21213f',
800: '#14142c',
900: '#010314',
950: '#00010A',
},
},
shurikenUi: {
tooltip: {
bgDark: '[#9333ea]',
},
},
},
},
});