mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
757 B
58 lines
757 B
export default { |
|
light: [ |
|
|
|
'#ffdce5', |
|
'#fee2d5', |
|
'#ffeab6', |
|
'#d1f7c4', |
|
'#ede2fe', |
|
'#eee', |
|
'#cfdffe', |
|
'#d0f1fd', |
|
'#c2f5e8', |
|
'#ffdaf6', |
|
], |
|
dark: [ |
|
'#f82b6099', |
|
'#ff6f2c99', |
|
'#fcb40099', |
|
'#20c93399', |
|
'#8b46ff99', |
|
'#666', |
|
'#2d7ff999', |
|
'#18bfff99', |
|
'#20d9d299', |
|
'#ff08c299', |
|
], |
|
} |
|
|
|
const enumColor = { |
|
light: [ |
|
'#cfdffe', |
|
'#d0f1fd', |
|
'#c2f5e8', |
|
'#ffdaf6', |
|
'#ffdce5', |
|
'#fee2d5', |
|
'#ffeab6', |
|
'#d1f7c4', |
|
'#ede2fe', |
|
'#eeeeee', |
|
], |
|
dark: [ |
|
'#2d7ff999', |
|
'#18bfff99', |
|
'#20d9d299', |
|
'#ff08c299', |
|
'#f82b6099', |
|
'#ff6f2c99', |
|
'#fcb40099', |
|
'#20c93399', |
|
'#8b46ff99', |
|
'#666', |
|
], |
|
} |
|
|
|
export { |
|
enumColor, |
|
}
|
|
|