diff --git a/app.vue b/app.vue index f606843..fbc6572 100644 --- a/app.vue +++ b/app.vue @@ -9,29 +9,21 @@ const banner = useState("banner", () => false); -let current_theme = "dark" // default theme -const saved_theme = localStorage.getItem("selectedTheme"); -if (saved_theme) { - current_theme = saved_theme; -} - -useHead({ - link: [ - { - rel: "stylesheet", - href: `/themes/${current_theme}.css` - } - ] -}) \ No newline at end of file diff --git a/components/Channel.vue b/components/Channel.vue index 0f48323..1828641 100644 --- a/components/Channel.vue +++ b/components/Channel.vue @@ -36,6 +36,6 @@ const isCurrentChannel = props.uuid == props.currentUuid; } .current-channel { - background-color: var(--sidebar-highlighted-background-color); + background-color: rgb(70, 70, 70); } \ No newline at end of file diff --git a/components/Message.vue b/components/Message.vue index e8bb600..5cd7773 100644 --- a/components/Message.vue +++ b/components/Message.vue @@ -88,7 +88,7 @@ onMounted(async () => { } .message:hover { - background-color: var(--chat-highlighted-background-color); + background-color: rgb(20, 20, 20); } .normal-message { @@ -142,7 +142,7 @@ onMounted(async () => { .message-date { font-size: .7em; - color: var(--secondary-text-color); + color: rgb(150, 150, 150); cursor: default; } diff --git a/components/MessageArea.vue b/components/MessageArea.vue index 7612243..49577f9 100644 --- a/components/MessageArea.vue +++ b/components/MessageArea.vue @@ -251,7 +251,7 @@ router.beforeEach((to, from, next) => { flex-direction: column; justify-content: center; align-content: center; - border: 1px solid var(--padding-color); + border: 1px solid rgb(70, 70, 70); padding-bottom: 1dvh; padding-top: 1dvh; margin-bottom: 1dvh; @@ -266,7 +266,7 @@ router.beforeEach((to, from, next) => { #message-box-input { width: 80%; - background-color: var(--sidebar-background-color); + background-color: rgb(50, 50, 50); border: none; color: inherit; padding-left: 1dvw; @@ -284,13 +284,11 @@ router.beforeEach((to, from, next) => { #submit-button { background-color: inherit; border: none; - color: var(--primary-color); - transition: color 100ms; + color: rgb(200, 200, 200); font-size: 1.5em; } #submit-button:hover { - color: var(--primary-highlighted-color); - cursor: pointer; + color: rgb(255, 255, 255); } \ No newline at end of file diff --git a/components/Settings/UserSettings/Account.vue b/components/Settings/UserSettings/Account.vue index 4247c60..0fe5013 100644 --- a/components/Settings/UserSettings/Account.vue +++ b/components/Settings/UserSettings/Account.vue @@ -145,8 +145,8 @@ const deleteAccount = async () => { font-size: 1em; border-radius: 8px; border: none; - color: var(--text-color); - background-color: var(--accent-color); + color: white; + background-color: #54361b; } .profile-popup { diff --git a/components/UserPopup.vue b/components/UserPopup.vue index b27ecea..092e7d5 100644 --- a/components/UserPopup.vue +++ b/components/UserPopup.vue @@ -1,7 +1,7 @@