mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
8b84963e17
merge with automation service
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
export const ontimeRadio = {
|
|
control: {
|
|
borderColor: '#262626', // $gray-1200
|
|
backgroundColor: '#262626', // $gray-1200
|
|
_checked: {
|
|
borderColor: '#262626', // $gray-1200
|
|
color: '#f6f6f6', // $ui-white
|
|
backgroundColor: '#f6f6f6', // $ui-white
|
|
},
|
|
},
|
|
label: {
|
|
color: '#9d9d9d', // $gray-500, same as placeholder value
|
|
_checked: {
|
|
color: '#f6f6f6', // $gray-200
|
|
},
|
|
_hover: {
|
|
color: '#e2e2e2', // $gray-200
|
|
},
|
|
},
|
|
};
|
|
|
|
export const ontimeBlockRadio = {
|
|
control: {
|
|
borderColor: '#262626', // $gray-1200
|
|
backgroundColor: '#262626', // $gray-1200
|
|
_checked: {
|
|
borderColor: '#262626', // $gray-1200
|
|
color: '#3182ce', // $action-blue
|
|
backgroundColor: '#3182ce', // $action-blue
|
|
},
|
|
_hover: {
|
|
color: '#3182ce', // $action-blue
|
|
backgroundColor: '#3182ce', // $action-blue
|
|
outline: 'none',
|
|
},
|
|
},
|
|
label: {
|
|
fontSize: '0.7em',
|
|
letterSpacing: '0.3px',
|
|
color: '#9d9d9d', // $gray-500
|
|
_checked: {
|
|
color: '#cfcfcf', // $gray-300
|
|
},
|
|
_hover: {
|
|
color: '#e2e2e2', // $gray-200
|
|
},
|
|
},
|
|
};
|