commit 409a99df39e4ba496e057f8a8f33f57afefb5048 Author: Vulpovile Date: Sat Jan 11 12:41:35 2025 -0800 Added themes diff --git a/theme-flaredefault-auto.css b/theme-flaredefault-auto.css new file mode 100644 index 0000000..f9c9201 --- /dev/null +++ b/theme-flaredefault-auto.css @@ -0,0 +1,2 @@ +@import "./theme-flaredefault-light.css" (prefers-color-scheme: light); +@import "./theme-flaredefault-dark.css" (prefers-color-scheme: dark); \ No newline at end of file diff --git a/theme-flaredefault-dark.css b/theme-flaredefault-dark.css new file mode 100644 index 0000000..6d79dc9 --- /dev/null +++ b/theme-flaredefault-dark.css @@ -0,0 +1,33 @@ +@import "./theme-gitea-dark\.css"; + +body { + background: linear-gradient(#444,#222); + background-repeat: no-repeat; + background-color: #222 !important; +} + +#navbar{ + zindex:1; + background: linear-gradient(#df852b, #c4792f); + color: black; + font-weight: bold; + font-size: 150%; + border: none; + box-shadow: 0px 2px 5px rgba(0,0,0,0.2); +} + +.secondary-nav{ + background: linear-gradient(#555,#333) !important; + box-shadow: black 0px 0px 5px; +} + +.ui.table, .ui.segments, #readme, .ui.dashboard-repos{ + box-shadow: 0px 2px 5px rgba(0,0,0,0.2); +} + +:root { + --color-nav-text: black; + --color-nav-hover-bg: linear-gradient(#555, #444); + --color-box-header: linear-gradient(#ce8338, #b07219); + --color-footer: #000; +} \ No newline at end of file diff --git a/theme-flaredefault-light.css b/theme-flaredefault-light.css new file mode 100644 index 0000000..a6327d4 --- /dev/null +++ b/theme-flaredefault-light.css @@ -0,0 +1,38 @@ +@import "./theme-gitea-light.css"; + +body { + background: linear-gradient(#F0F0F0, #E0E0E0); + background-repeat: no-repeat; + background-color: #E0E0E0 !important; +} + +#navbar{ + zindex:1; + background: linear-gradient(#333, #000); + color: white; + font-weight: bold; + font-size: 150%; + border: none; + box-shadow: 0px 2px 5px rgba(0,0,0,0.2); +} + +.secondary-nav{ + background: linear-gradient(#E6E6E6,#BFBFBF) !important; + box-shadow: black 0px 0px 5px; +} + +.ui.table, .ui.segments, #readme, .ui.dashboard-repos, .ui.vertical.menu, .ui.attached.segment, .ui.top.attached.header{ + box-shadow: 0px 2px 5px rgba(0,0,0,0.2); +} + +.page-footer{ + background: linear-gradient(#EFEFEF, #DEDEDE); + box-shadow: 0px -2px 5px rgba(0,0,0,0.2); +} + +:root { + --color-nav-text: white; + --color-nav-hover-bg: linear-gradient(#555, #444); + --color-box-header: linear-gradient(#E6E6E6, #BFBFBF); + --color-footer: #D0D0D0; +}