diff --git a/bindings/pyl7vp/pyl7vp/config.py b/bindings/pyl7vp/pyl7vp/config.py index 0f1cb5c1..ae831f73 100644 --- a/bindings/pyl7vp/pyl7vp/config.py +++ b/bindings/pyl7vp/pyl7vp/config.py @@ -192,7 +192,7 @@ "center": [120.153576, 30.287459], "pitch": 0, "bearing": 0, - "style": 'dark', + "style": 'grey', "WebGLParams": { "preserveDrawingBuffer": True, }, diff --git a/bindings/pyl7vp/pyl7vp/meta.py b/bindings/pyl7vp/pyl7vp/meta.py index e9554191..c072d934 100644 --- a/bindings/pyl7vp/pyl7vp/meta.py +++ b/bindings/pyl7vp/pyl7vp/meta.py @@ -1,2 +1,2 @@ -__version__ = "0.0.9" +__version__ = "0.1.0" __author__ = "@lvisei" diff --git a/bindings/pyl7vp/pyl7vp/templates/l7vp.html b/bindings/pyl7vp/pyl7vp/templates/l7vp.html index a398e599..b3634ebf 100644 --- a/bindings/pyl7vp/pyl7vp/templates/l7vp.html +++ b/bindings/pyl7vp/pyl7vp/templates/l7vp.html @@ -82,7 +82,7 @@ token: { colorPrimary: "#8274FF", colorTextBase: "rgba(255,255,255,0.85)", - colorBgBase: "#0f0f13", + colorBgBase: "#1d1e25", colorInfo: "#8274FF", borderRadius: 6, }, diff --git a/packages/li-editor/docs/case/Theme/demos/theme.ts b/packages/li-editor/docs/case/Theme/demos/theme.ts index 306112f5..fdc6ca01 100644 --- a/packages/li-editor/docs/case/Theme/demos/theme.ts +++ b/packages/li-editor/docs/case/Theme/demos/theme.ts @@ -2,6 +2,10 @@ import { theme } from 'antd'; export const ANTD_DEFAULT_THEME = { algorithm: theme.defaultAlgorithm, + token: { + colorPrimary: '#8274FF', + colorInfo: '#8274FF', + }, }; export const ANTD_DARK_THEME = { @@ -9,7 +13,7 @@ export const ANTD_DARK_THEME = { token: { colorPrimary: '#8274FF', colorTextBase: 'rgba(255,255,255,0.85)', - colorBgBase: '#0f0f13', + colorBgBase: '#1d1e25', colorInfo: '#8274FF', borderRadius: 6, },