fix: set whiteboard color to white

#974
This commit is contained in:
Isaac Tay 2023-01-15 00:03:20 +08:00
parent d6d3879b51
commit a91607fbb0
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@
display: flex;
overflow: auto;
flex-flow: column;
background: @cp_whiteboard-board-bg;
background: white;
}
// created in the html

View File

@ -61,7 +61,7 @@ define([
var metadataMgr = framework._.cpNfInner.metadataMgr;
var brush = {
color: window.CryptPad_theme === "dark" ? '#FFFFFF' : '#000000',
color: '#000000',
opacity: 1
};