Added the ability to export the current color config/theme. (#120)

* Added the ability to export the current color config/theme.

* Added the ability to import a theme.

* Added the ability to import a config only.

* Created preset themes for popular palettes.

* Restart AGS once settings/theme is imported.

* Added tokyo night theme

* Added rose pine themes.

* Move themes

* Organize files
This commit is contained in:
Jas Singh
2024-08-14 23:30:36 -07:00
committed by GitHub
parent 6dd37e686b
commit 0ba89aae4a
18 changed files with 2886 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ $popover-padding: 0.6rem * 1.6;
window#verification .verification {
@include floating-widget;
background: if($bar-menus-monochrome, $bar-menus-background, $bar-menus-menu-dashboard-powermenu-confirmation-background);
border: $bar-menus-border-size solid if($bar-menus-monochrome, $bar-menus-border, $bar-menus-menu-dashboard-powermenu-confirmation-border);
border: $bar-menus-border-size solid if($bar-menus-monochrome, $bar-menus-border-color, $bar-menus-menu-dashboard-powermenu-confirmation-border);
padding: 0.35em * 1.6 * 1.5;
min-width: 20em;
min-height: 6em;

View File

@@ -373,3 +373,21 @@ dialog {
font-size: 1em;
color: $yellow;
}
.options-import,
.options-export {
border-radius: $bar-menus-border-radius * 0.5;
color: $bar-menus-buttons-text;
padding: 0.35em 0.35em;
background: $bar-menus-buttons-default;
margin-right: 1em;
margin-left: 0.5em;
&:hover {
background: transparentize($bar-menus-buttons-default, 0.8);
}
}
.options-import {
margin-right: 0em;
}