mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 20:03:52 +00:00
de9a7a87fd
* refactor(project structure): UI * refactor(project structure): extract utilities * refactor(project structure): remove unused * refactor(project structure): electron * refactor(project structure): server refactor: migrate to vitest refactor: monorepo config * refactor: extract application menu * refactor: exit process * refactor: extract tray menu * chore: electron build * Added Seconds in studio clock #282 --------- Co-authored-by: Fabian Posenau <fabian@fphome.de> --------- Co-authored-by: Fabian Posenau <fabian.p99@gmx.de> Co-authored-by: Fabian Posenau <fabian@fphome.de>
22 lines
476 B
TypeScript
22 lines
476 B
TypeScript
export const ontimeCheckboxOnDark = {
|
|
control: {
|
|
border: '1px',
|
|
borderColor: '#2d2d2d', // $gray-1100
|
|
backgroundColor: '#2d2d2d', // $gray-1100
|
|
_checked: {
|
|
borderColor: '#3182ce', // $action-blue
|
|
backgroundColor: '#3182ce', //$action-blue
|
|
},
|
|
_focus: {
|
|
boxShadow: '0 0 0 1px #578AF4'
|
|
}
|
|
},
|
|
label: {
|
|
fontWeight: '200',
|
|
color: '#9d9d9d', // $gray-500
|
|
_checked: {
|
|
color: '#cfcfcf', // $gray-300
|
|
}
|
|
},
|
|
};
|