Merge pull request #5449 from abramchikd/theme-clean

Added "Clean dark" and "Clean light" themes
This commit is contained in:
Lauri Ojansivu 2024-06-21 03:08:30 +03:00 committed by GitHub
commit ed4189cc5e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 1376 additions and 1 deletions

File diff suppressed because it is too large Load diff

View file

@ -16,6 +16,8 @@ export const ALLOWED_BOARD_COLORS = [
'modern',
'moderndark',
'exodark',
'cleandark',
'cleanlight',
];
export const ALLOWED_COLORS = [
'white',

View file

@ -169,6 +169,8 @@ Migrations.add('use-css-class-for-boards-colors', () => {
'#2A80B8': 'modern',
'#2a2a2a': 'moderndark',
'#222222': 'exodark',
'#0A0A14': 'cleandark',
'#FFFFFF': 'cleanlight',
};
Boards.find().forEach(board => {
const oldBoardColor = board.background.color;