Skip to content

Commit ed1d31d

Browse files
Adding colors to be on by default
1 parent 22f9072 commit ed1d31d

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

src/plugin/utils/props.ts

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,36 @@ import { Column } from '@/types';
22

33
export const AllProps = {
44
// ? Colors accept Vuetify them color names or variables, HEX, RGB, HSL, and CSS color names
5-
colors: null, // * Works
5+
colors: { // * Passed
6+
body: {
7+
base: '--v-theme-surface',
8+
bg: '--v-theme-surface',
9+
text: '--v-theme-on-surface',
10+
},
11+
default: {
12+
base: 'primary',
13+
bg: 'primary',
14+
border: 'primary',
15+
text: 'on-primary',
16+
},
17+
footer: {
18+
bg: '--v-theme-surface',
19+
text: '--v-theme-on-surface',
20+
},
21+
header: {
22+
bg: 'primary',
23+
text: 'on-primary',
24+
},
25+
loader: {
26+
// bg: '',
27+
circular: 'primary',
28+
color: 'primary',
29+
linear: 'surface-variant',
30+
text: 'surface-variant',
31+
},
32+
percentageChange: 25,
33+
percentageDirection: 'desc',
34+
},
635
// customFilter: undefined, // ? Needs Testing
736
// customKeyFilter: undefined, // ? Needs Testing
837
density: 'default', // * Works

0 commit comments

Comments
 (0)