diff --git a/src/renderer/src/App.tsx b/src/renderer/src/App.tsx index e80cb48..e2f9499 100644 --- a/src/renderer/src/App.tsx +++ b/src/renderer/src/App.tsx @@ -41,9 +41,9 @@ function App(): JSX.Element { return (
-
+
-

出站

+

出站模式

-

代理

+

代理模式

diff --git a/tailwind.config.js b/tailwind.config.js index ac1ec3b..7859875 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -10,5 +10,26 @@ module.exports = { extend: {} }, darkMode: 'class', - plugins: [nextui()] + plugins: [ + nextui({ + themes: { + dark: { + colors: { + primary: { + DEFAULT: '#006FEE', + foreground: '#FFFFFF' + } + } + }, + light: { + colors: { + primary: { + DEFAULT: '#41C3F8', + foreground: '#000000' + } + } + } + } + }) + ] }