diff --git a/ui/ssr-example/src/client/component/Header/GlobalStyle.tsx b/ui/ssr-example/src/client/component/Header/GlobalStyle.tsx index e8652a13..1afe57ac 100644 --- a/ui/ssr-example/src/client/component/Header/GlobalStyle.tsx +++ b/ui/ssr-example/src/client/component/Header/GlobalStyle.tsx @@ -14,6 +14,7 @@ export const GlobalStyle = () => { padding: 3px 5px; } .hljs { + --hljs-color: #383a42; color: #383a42; background: #fafafa; } @@ -87,6 +88,7 @@ export const GlobalStyle = () => { padding: 3px 5px; } .hljs { + --hljs-color: #e9e9f4; color: #e9e9f4; background: #282936; } diff --git a/ui/ssr-example/src/client/component/ScrollControl/ScrollControlTool.tsx b/ui/ssr-example/src/client/component/ScrollControl/ScrollControlTool.tsx index b25448a3..6d510373 100644 --- a/ui/ssr-example/src/client/component/ScrollControl/ScrollControlTool.tsx +++ b/ui/ssr-example/src/client/component/ScrollControl/ScrollControlTool.tsx @@ -52,8 +52,8 @@ export const ScrollControlTool = ({ cursor="pointer" borderRadius="full" sx={{ - backgroundColor: currentSection === i ? "red" : "initial", - border: currentSection === i ? "none" : "1px solid #e2e2e2", + backgroundColor: currentSection === i ? "purple.600" : "initial", + border: currentSection === i ? "none" : "1.5px solid #e2e2e2", }} onClick={() => clickHandler(i)} /> diff --git a/ui/ssr-example/src/client/container/Section/Main.tsx b/ui/ssr-example/src/client/container/Section/Main.tsx index 836fefb7..9eb542e7 100644 --- a/ui/ssr-example/src/client/container/Section/Main.tsx +++ b/ui/ssr-example/src/client/container/Section/Main.tsx @@ -63,7 +63,7 @@ export const MainSection = () => { This website is built with @my-react project.
Version: @my-react/react [{reactVersion}]; @my-react/react-dom [{reactDOMVersion}] (enableMockReact: ) - +