-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtailwind.config.js
More file actions
90 lines (90 loc) · 3.1 KB
/
Copy pathtailwind.config.js
File metadata and controls
90 lines (90 loc) · 3.1 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/** @type {import('tailwindcss').Config} */
export default {
darkMode: ['class', '.theme-dark'],
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./extensions/psm-*/*.{js,ts,jsx,tsx}",
"./extensions/psm-*/src/**/*.{js,ts,jsx,tsx}",
"./extensions/psm-*/tool-review/**/*.{js,ts,jsx,tsx}",
"./extensions/psm-*/LoopStrip/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
mono: [
'Cascadia Code',
'Fira Code',
'JetBrains Mono',
'SF Mono',
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace',
],
sans: [
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'PingFang SC',
'Microsoft YaHei',
'Noto Sans CJK SC',
'WenQuanYi Micro Hei',
'Helvetica Neue',
'Arial',
'sans-serif',
],
},
colors: {
background: 'rgb(var(--color-background) / <alpha-value>)',
foreground: 'rgb(var(--color-foreground) / <alpha-value>)',
card: {
DEFAULT: 'rgb(var(--color-card) / <alpha-value>)',
foreground: 'rgb(var(--color-card-foreground) / <alpha-value>)',
},
popover: {
DEFAULT: 'rgb(var(--color-popover) / <alpha-value>)',
foreground: 'rgb(var(--color-popover-foreground) / <alpha-value>)',
},
primary: {
DEFAULT: 'rgb(var(--color-primary) / <alpha-value>)',
foreground: 'rgb(var(--color-primary-foreground) / <alpha-value>)',
},
secondary: {
DEFAULT: 'rgb(var(--color-secondary) / <alpha-value>)',
foreground: 'rgb(var(--color-secondary-foreground) / <alpha-value>)',
},
muted: {
DEFAULT: 'rgb(var(--color-muted) / <alpha-value>)',
foreground: 'rgb(var(--color-muted-foreground) / <alpha-value>)',
},
accent: {
DEFAULT: 'rgb(var(--color-accent) / <alpha-value>)',
foreground: 'rgb(var(--color-accent-foreground) / <alpha-value>)',
},
destructive: {
DEFAULT: 'rgb(var(--color-destructive) / <alpha-value>)',
foreground: 'rgb(var(--color-destructive-foreground) / <alpha-value>)',
},
border: 'rgb(var(--color-border) / <alpha-value>)',
input: 'rgb(var(--color-input) / <alpha-value>)',
ring: 'rgb(var(--color-ring) / <alpha-value>)',
info: 'rgb(var(--color-info) / <alpha-value>)',
success: 'rgb(var(--color-success) / <alpha-value>)',
warning: 'rgb(var(--color-warning) / <alpha-value>)',
surface: {
DEFAULT: 'rgb(var(--color-surface) / <alpha-value>)',
dark: 'rgb(var(--color-surface-dark) / <alpha-value>)',
},
'secondary-hover': 'rgb(var(--color-secondary-hover) / <alpha-value>)',
'border-hover': 'rgb(var(--color-border-hover) / <alpha-value>)',
purple: 'rgb(var(--color-purple) / <alpha-value>)',
},
},
},
plugins: [],
}