chore: fix color (#2049)

Co-authored-by: JimmFly <yangjinfei001@gmail.com>
This commit is contained in:
Flrande
2023-04-20 22:13:20 +08:00
committed by GitHub
parent 97b1a31f8d
commit b2e93433e1
5 changed files with 9 additions and 15 deletions

View File

@@ -44,7 +44,7 @@ export const StyledIconButton = styled('button', {
width,
height,
fontSize,
color: 'var(--affine-hover-color)',
color: 'var(--affine-icon-color)',
...displayInlineFlex('center', 'center'),
position: 'relative',
...(disabled ? { cursor: 'not-allowed', pointerEvents: 'none' } : {}),

View File

@@ -75,8 +75,8 @@ export const toast = (
font-size: var(--affine-font-sm);
padding: 6px 12px;
margin: 10px 0 0 0;
color: var(--affine-tooltip-color);
background: var(--affine-tooltip-background);
color: var(--affine-white);
background: var(--affine-tooltip);
box-shadow: var(--affine-tooltip-shadow);
border-radius: 10px;
transition: all 230ms cubic-bezier(0.21, 1.02, 0.73, 1);