fix: the dark mode color

This commit is contained in:
qinluhe 2024-07-03 14:52:18 +08:00
parent d5c08a3c80
commit b2d6876347
4 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ describe('convert yjs data to slate content', () => {
it('should return undefined if root block is not exist', () => {
const doc = new Y.Doc();
expect(() => yDocToSlateContent(doc)).toBeUndefined();
expect(yDocToSlateContent(doc)).toBeUndefined();
const doc2 = withTestingYDoc('1');
const { blocks, childrenMap, textMap, pageId } = getTestingDocData(doc2);

View File

@ -1,3 +1,3 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="9" cy="9" r="2.75" fill="#454545"/>
<circle cx="9" cy="9" r="2.75" fill="currentColor"/>
</svg>

Before

Width:  |  Height:  |  Size: 151 B

After

Width:  |  Height:  |  Size: 160 B

View File

@ -1,3 +1,3 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="9" cy="9" r="2.75" stroke="#454545"/>
<circle cx="9" cy="9" r="2.75" stroke="currentColor"/>
</svg>

Before

Width:  |  Height:  |  Size: 153 B

After

Width:  |  Height:  |  Size: 162 B

View File

@ -1,3 +1,3 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="5" height="5" transform="translate(6.5 6.5)" fill="#454545"/>
<rect width="5" height="5" transform="translate(6.5 6.5)" fill="currentColor"/>
</svg>

Before

Width:  |  Height:  |  Size: 178 B

After

Width:  |  Height:  |  Size: 187 B