mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 01:13:55 +00:00
23 lines
499 B
TypeScript
23 lines
499 B
TypeScript
export const ontimeDrawer = {
|
|
header: {
|
|
color: '#fefefe', // $gray-50
|
|
backgroundColor: '#202020', // $gray-1250
|
|
},
|
|
body: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
color: '#fefefe', // $gray-50
|
|
backgroundColor: '#202020', // $gray-1250
|
|
},
|
|
footer: {
|
|
backgroundColor: '#202020', // $gray-1250
|
|
},
|
|
closeButton: {
|
|
color: '#fefefe', // $gray-50
|
|
_hover: {
|
|
color: '#303030', // $gray-1050
|
|
backgroundColor: '#fefefe', // $gray-50
|
|
},
|
|
},
|
|
};
|