Tokens for Knob
parent
589db107f9
commit
4acc2e63f7
|
@ -37,15 +37,15 @@ export default {
|
||||||
},
|
},
|
||||||
valueColor: {
|
valueColor: {
|
||||||
type: String,
|
type: String,
|
||||||
default: $dt('primary.color', 'Black')
|
default: $dt('knob.value.background')
|
||||||
},
|
},
|
||||||
rangeColor: {
|
rangeColor: {
|
||||||
type: String,
|
type: String,
|
||||||
default: $dt('surface.border', 'LightGray')
|
default: $dt('knob.range.background')
|
||||||
},
|
},
|
||||||
textColor: {
|
textColor: {
|
||||||
type: String,
|
type: String,
|
||||||
default: $dt('text.color.secondary', 'Black')
|
default: $dt('knob.text.color')
|
||||||
},
|
},
|
||||||
strokeWidth: {
|
strokeWidth: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
|
|
@ -1 +1,29 @@
|
||||||
export default {};
|
export default {
|
||||||
|
root: {
|
||||||
|
cagatay: '{surface.200}'
|
||||||
|
},
|
||||||
|
colorScheme: {
|
||||||
|
light: {
|
||||||
|
value: {
|
||||||
|
background: '{primary.color}'
|
||||||
|
},
|
||||||
|
range: {
|
||||||
|
background: '{surface.200}'
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
color: '{surface.500}'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
dark: {
|
||||||
|
value: {
|
||||||
|
background: '{primary.color}'
|
||||||
|
},
|
||||||
|
range: {
|
||||||
|
background: '{surface.700}'
|
||||||
|
},
|
||||||
|
text: {
|
||||||
|
color: '{surface.400}'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue