Privacy Policy
It's.... kind of empty here.
diff --git a/src/views/SettingsView.vue b/src/views/SettingsView.vue
index 3b043b8..ae97a68 100644
--- a/src/views/SettingsView.vue
+++ b/src/views/SettingsView.vue
@@ -50,7 +50,7 @@ export default {
-
+
{{ $t("nav.settings") }}
@@ -77,10 +77,10 @@ export default {
-
-
+ class="bg-surface0 p-4 py-2 rounded-md"> -->
diff --git a/src/views/UserView.vue b/src/views/UserView.vue
index ed05526..61dcc38 100644
--- a/src/views/UserView.vue
+++ b/src/views/UserView.vue
@@ -96,7 +96,7 @@ export default {
class="w-full justify-center md:inline-flex space-y-4 md:space-y-0 md:space-x-4 md:p-4"
>
@@ -121,7 +121,7 @@ export default {
{{ $t('main.live') }}
@@ -147,7 +147,7 @@ export default {
OFFLINE
@@ -160,7 +160,7 @@ export default {
{{ tag }}
diff --git a/src/views/VodView.vue b/src/views/VodView.vue
index 4bb6d68..c26a0da 100644
--- a/src/views/VodView.vue
+++ b/src/views/VodView.vue
@@ -92,7 +92,7 @@ export default {
class="w-full justify-center md:inline-flex space-y-4 md:space-y-0 md:space-x-4 md:p-4"
>
diff --git a/tailwind.config.js b/tailwind.config.js
index f99f548..4ae0255 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -7,9 +7,40 @@ module.exports = {
extend: {},
},
plugins: [
- require('@catppuccin/tailwindcss')({
- prefix: 'ctp',
- defaultFlavour: 'mocha'
+ require('tailwindcss-themer')({
+ defaultTheme: {
+ // put the default values of any config you want themed
+ // just as if you were to extend tailwind's theme like normal https://tailwindcss.com/docs/theme#extending-the-default-theme
+ extend: {
+ // colors is used here for demonstration purposes
+ colors: {
+ primary: 'red'
+ }
+ }
+ },
+ themes: [
+ {
+ // name your theme anything that could be a valid css class name
+ // remember what you named your theme because you will use it as a class to enable the theme
+ name: 'my-theme',
+ // put any overrides your theme has here
+ // just as if you were to extend tailwind's theme like normal https://tailwindcss.com/docs/theme#extending-the-default-theme
+ extend: {
+ colors: {
+ "primary": '#141515',
+ "secondary": '#1e1f1f',
+ "overlay0": '#282a2a',
+ "overlay1": '#323434',
+ "surface0": '#393B3B',
+ "surface1": '#3F4242',
+ "crust": '#0C0C0C',
+ "purple": '#D946EF',
+ "red": "#980C0C"
+
+ }
+ }
+ }
+ ]
}),
require('@tailwindcss/typography'),
require("@tailwindcss/forms")