mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 07:53:54 +00:00
62 lines
1.2 KiB
TypeScript
62 lines
1.2 KiB
TypeScript
const commonStyles = {
|
|
fontWeight: '400',
|
|
backgroundColor: '#262626', // $gray-1200
|
|
color: '#e2e2e2', // $gray-200
|
|
border: '1px solid transparent',
|
|
borderRadius: '3px',
|
|
_hover: {
|
|
backgroundColor: '#2d2d2d', // $gray-1100
|
|
},
|
|
_focus: {
|
|
backgroundColor: '#2d2d2d', // $gray-1000
|
|
color: '#f6f6f6', // $gray-50
|
|
border: '1px solid #578AF4', // $blue-500
|
|
},
|
|
_placeholder: { color: '#9d9d9d' }, // $gray-500
|
|
_disabled: {
|
|
_hover: {
|
|
backgroundColor: '#262626', // $gray-1200
|
|
},
|
|
},
|
|
};
|
|
|
|
export const ontimeInputFilled = {
|
|
field: {
|
|
...commonStyles,
|
|
},
|
|
};
|
|
|
|
export const ontimeInputGhosted = {
|
|
field: {
|
|
...commonStyles,
|
|
backgroundColor: 'transparent',
|
|
color: '#f6f6f6', // $gray-50
|
|
_hover: {
|
|
backgroundColor: 'transparent',
|
|
border: '1px solid #2B5ABC', // $blue-500
|
|
},
|
|
},
|
|
};
|
|
|
|
export const ontimeInputTransparent = {
|
|
field: {
|
|
...commonStyles,
|
|
backgroundColor: 'transparent',
|
|
_hover: {
|
|
backgroundColor: '#2d2d2d', // $gray-1100
|
|
},
|
|
},
|
|
};
|
|
|
|
export const ontimeTextAreaFilled = {
|
|
...commonStyles,
|
|
};
|
|
|
|
export const ontimeTextAreaTransparent = {
|
|
...commonStyles,
|
|
backgroundColor: 'transparent',
|
|
_hover: {
|
|
backgroundColor: '#2d2d2d', // $gray-1100
|
|
},
|
|
};
|