Skip to content

Commit

Permalink
chore: set dark colorBgBase
Browse files Browse the repository at this point in the history
  • Loading branch information
lvisei committed Jan 24, 2024
1 parent cfc5eb3 commit b66d999
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/li-editor/docs/case/Theme/demos/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@ import { theme } from 'antd';

export const ANTD_DEFAULT_THEME = {
algorithm: theme.defaultAlgorithm,
token: {
colorPrimary: '#8274FF',
colorInfo: '#8274FF',
},
};

export const ANTD_DARK_THEME = {
algorithm: theme.darkAlgorithm,
token: {
colorPrimary: '#8274FF',
colorTextBase: 'rgba(255,255,255,0.85)',
colorBgBase: '#0f0f13',
colorBgBase: '#1d1e25',
colorInfo: '#8274FF',
borderRadius: 6,
},
Expand Down

0 comments on commit b66d999

Please sign in to comment.