-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
71 lines (71 loc) · 1.86 KB
/
app.config.ts
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
export default defineAppConfig({
// ui: {
// primary: "bcGovBlue",
// gray: "bcGovGray",
// button: {
// variant: {
// solid: "hover:bg-opacity-[.92] hover:bg-{color}-500",
// },
// },
// formGroup: {
// label: { base: "block text-base font-bold py-3 text-gray-900" },
// },
// input: {
// rounded: "rounded-none",
// variant: {
// bcGov: "bg-gray-100 h-12 border-b-2 focus:ring-0",
// },
// },
// select: {
// rounded: "rounded-none",
// variant: {
// bcGov: "bg-gray-100 h-12 border-b-2 border-b-gray-500 focus:ring-0",
// },
// },
// selectMenu: {
// rounded: "rounded-none",
// option: {
// rounded: "rounded-none text-gray-900",
// },
// variant: {
// bcGov: "bg-gray-100 border-b-2 focus:ring-0 text-gray-900",
// },
// },
// textarea: {
// rounded: "rounded-none",
// variant: {
// bcGov: "bg-gray-100 border-b-2 h-20 focus:ring-0 text-gray-900",
// },
// },
// table: {
// th: {
// color: "text-gray-900",
// },
// td: {
// base: "align-text-top whitespace-normal",
// color: "text-gray-700",
// },
// },
// radio: {
// border: "border-gray-500",
// },
// checkbox: {
// wrapper: "flex items-start",
// base: "mt-1 mr-2",
// border: "border-gray-500",
// label: "text-base text-gray-900",
// },
// tooltip: {
// background: "bg-gray-700",
// color: "text-white",
// ring: "ring-1 ring-gray-700",
// rounded: "rounded-none",
// base: "h-auto text-base p-3",
// arrow: {
// base: "before:w-3 before:h-3",
// ring: "before:ring-1 before:ring-gray-700",
// background: "before:bg-gray-700",
// },
// },
// },
});