From 676819cecbebe495a8092614fd668169b95a03f2 Mon Sep 17 00:00:00 2001 From: Sho Date: Sat, 1 Aug 2026 23:25:54 +0900 Subject: [PATCH] feat: add KDE Plasma color schemes, Konsole profiles, and auto-deploy to install.sh --- install.sh | 14 +++ kde/color-schemes/Alucard.colors | 86 +++++++++++++++++ kde/color-schemes/Blade.colors | 86 +++++++++++++++++ kde/color-schemes/Buff.colors | 86 +++++++++++++++++ kde/color-schemes/CatppuccinLatte.colors | 86 +++++++++++++++++ kde/color-schemes/CatppuccinMacchiato.colors | 86 +++++++++++++++++ kde/color-schemes/CatppuccinMocha.colors | 86 +++++++++++++++++ kde/color-schemes/Cyan.colors | 86 +++++++++++++++++ kde/color-schemes/CyberpunkNeon.colors | 86 +++++++++++++++++ kde/color-schemes/DraculaPro.colors | 86 +++++++++++++++++ kde/color-schemes/DraculaProBlade.colors | 86 +++++++++++++++++ kde/color-schemes/DraculaProBuffy.colors | 86 +++++++++++++++++ kde/color-schemes/DraculaProLincoln.colors | 86 +++++++++++++++++ kde/color-schemes/DraculaProMorbius.colors | 86 +++++++++++++++++ kde/color-schemes/DraculaProVanHelsing.colors | 86 +++++++++++++++++ kde/color-schemes/EmoZoey.colors | 86 +++++++++++++++++ kde/color-schemes/EverforestDark.colors | 86 +++++++++++++++++ kde/color-schemes/EverforestLight.colors | 86 +++++++++++++++++ kde/color-schemes/GruvboxDark.colors | 86 +++++++++++++++++ kde/color-schemes/GruvboxLight.colors | 86 +++++++++++++++++ kde/color-schemes/GruvboxMaterial.colors | 86 +++++++++++++++++ kde/color-schemes/Lincoln.colors | 86 +++++++++++++++++ kde/color-schemes/MonokaiPro.colors | 86 +++++++++++++++++ kde/color-schemes/Morpheus.colors | 86 +++++++++++++++++ kde/color-schemes/NordDark.colors | 86 +++++++++++++++++ kde/color-schemes/NordLight.colors | 86 +++++++++++++++++ kde/color-schemes/OneDarkPro.colors | 86 +++++++++++++++++ kde/color-schemes/OneLight.colors | 86 +++++++++++++++++ kde/color-schemes/Pro.colors | 86 +++++++++++++++++ kde/color-schemes/RosPine.colors | 86 +++++++++++++++++ kde/color-schemes/RosPineDawn.colors | 86 +++++++++++++++++ kde/color-schemes/RosPineMoon.colors | 86 +++++++++++++++++ kde/color-schemes/SolarizedDark.colors | 86 +++++++++++++++++ kde/color-schemes/SolarizedLight.colors | 86 +++++++++++++++++ kde/color-schemes/TokyoNight.colors | 86 +++++++++++++++++ kde/color-schemes/TokyoNightDay.colors | 86 +++++++++++++++++ kde/color-schemes/TokyoNightStorm.colors | 86 +++++++++++++++++ kde/color-schemes/ZoeyNight.colors | 86 +++++++++++++++++ kde/color-schemes/ZoeyPink.colors | 86 +++++++++++++++++ kde/konsole/DraculaProBlade.colorscheme | 93 ++++++++++++++++++ kde/konsole/Quickshell.colorscheme | 94 +++++++++++++++++++ 41 files changed, 3469 insertions(+) create mode 100644 kde/color-schemes/Alucard.colors create mode 100644 kde/color-schemes/Blade.colors create mode 100644 kde/color-schemes/Buff.colors create mode 100644 kde/color-schemes/CatppuccinLatte.colors create mode 100644 kde/color-schemes/CatppuccinMacchiato.colors create mode 100644 kde/color-schemes/CatppuccinMocha.colors create mode 100644 kde/color-schemes/Cyan.colors create mode 100644 kde/color-schemes/CyberpunkNeon.colors create mode 100644 kde/color-schemes/DraculaPro.colors create mode 100644 kde/color-schemes/DraculaProBlade.colors create mode 100644 kde/color-schemes/DraculaProBuffy.colors create mode 100644 kde/color-schemes/DraculaProLincoln.colors create mode 100644 kde/color-schemes/DraculaProMorbius.colors create mode 100644 kde/color-schemes/DraculaProVanHelsing.colors create mode 100644 kde/color-schemes/EmoZoey.colors create mode 100644 kde/color-schemes/EverforestDark.colors create mode 100644 kde/color-schemes/EverforestLight.colors create mode 100644 kde/color-schemes/GruvboxDark.colors create mode 100644 kde/color-schemes/GruvboxLight.colors create mode 100644 kde/color-schemes/GruvboxMaterial.colors create mode 100644 kde/color-schemes/Lincoln.colors create mode 100644 kde/color-schemes/MonokaiPro.colors create mode 100644 kde/color-schemes/Morpheus.colors create mode 100644 kde/color-schemes/NordDark.colors create mode 100644 kde/color-schemes/NordLight.colors create mode 100644 kde/color-schemes/OneDarkPro.colors create mode 100644 kde/color-schemes/OneLight.colors create mode 100644 kde/color-schemes/Pro.colors create mode 100644 kde/color-schemes/RosPine.colors create mode 100644 kde/color-schemes/RosPineDawn.colors create mode 100644 kde/color-schemes/RosPineMoon.colors create mode 100644 kde/color-schemes/SolarizedDark.colors create mode 100644 kde/color-schemes/SolarizedLight.colors create mode 100644 kde/color-schemes/TokyoNight.colors create mode 100644 kde/color-schemes/TokyoNightDay.colors create mode 100644 kde/color-schemes/TokyoNightStorm.colors create mode 100644 kde/color-schemes/ZoeyNight.colors create mode 100644 kde/color-schemes/ZoeyPink.colors create mode 100644 kde/konsole/DraculaProBlade.colorscheme create mode 100644 kde/konsole/Quickshell.colorscheme diff --git a/install.sh b/install.sh index 00d864f..f3d32d4 100755 --- a/install.sh +++ b/install.sh @@ -253,6 +253,20 @@ deploy_configs() { cp -r "${SCRIPT_DIR}/fastfetch/"* "${TARGET_CONFIG_DIR}/fastfetch/" fi + # KDE Color Schemes & Konsole Profiles + if [ -d "${SCRIPT_DIR}/kde" ]; then + info "Deploying KDE Plasma color schemes and Konsole profiles..." + mkdir -p "${HOME}/.local/share/color-schemes" "${HOME}/.local/share/konsole" + [ -d "${SCRIPT_DIR}/kde/color-schemes" ] && cp -r "${SCRIPT_DIR}/kde/color-schemes/"* "${HOME}/.local/share/color-schemes/" 2>/dev/null || true + [ -d "${SCRIPT_DIR}/kde/konsole" ] && cp -r "${SCRIPT_DIR}/kde/konsole/"* "${HOME}/.local/share/konsole/" 2>/dev/null || true + fi + + # Run KDE generator script for complete coverage + KDE_GEN_SCRIPT="${TARGET_CONFIG_DIR}/quickshell/services/python/generate_kde_colorschemes.py" + if [ -f "$KDE_GEN_SCRIPT" ]; then + python3 "$KDE_GEN_SCRIPT" 2>/dev/null || true + fi + success "QuickShell configuration deployed successfully!" } diff --git a/kde/color-schemes/Alucard.colors b/kde/color-schemes/Alucard.colors new file mode 100644 index 0000000..76022b8 --- /dev/null +++ b/kde/color-schemes/Alucard.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Alucard +ColorScheme=Alucard +accentColor=98,114,164 + +[Colors:Button] +BackgroundAlternate=230,230,230 +BackgroundNormal=208,208,208 +DecorationFocus=98,114,164 +DecorationHover=255,121,198 +ForegroundActive=98,114,164 +ForegroundInactive=208,208,208 +ForegroundLink=98,114,164 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=40,42,54 +ForegroundPositive=100,255,100 +ForegroundVisited=255,121,198 + +[Colors:Complementary] +BackgroundAlternate=230,230,230 +BackgroundNormal=248,248,242 +DecorationFocus=98,114,164 +DecorationHover=255,121,198 +ForegroundActive=98,114,164 +ForegroundInactive=208,208,208 +ForegroundLink=98,114,164 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=40,42,54 +ForegroundPositive=100,255,100 +ForegroundVisited=255,121,198 + +[Colors:Header] +BackgroundAlternate=230,230,230 +BackgroundNormal=248,248,242 +DecorationFocus=98,114,164 +DecorationHover=255,121,198 +ForegroundActive=98,114,164 +ForegroundInactive=208,208,208 +ForegroundLink=98,114,164 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=40,42,54 +ForegroundPositive=100,255,100 +ForegroundVisited=255,121,198 + +[Colors:Selection] +BackgroundAlternate=98,114,164 +BackgroundNormal=98,114,164 +DecorationFocus=98,114,164 +DecorationHover=255,121,198 +ForegroundActive=255,255,255 +ForegroundInactive=40,42,54 +ForegroundLink=255,121,198 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,0,0 + +[Colors:View] +BackgroundAlternate=230,230,230 +BackgroundNormal=248,248,242 +DecorationFocus=98,114,164 +DecorationHover=255,121,198 +ForegroundActive=98,114,164 +ForegroundInactive=208,208,208 +ForegroundLink=98,114,164 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=40,42,54 +ForegroundPositive=100,255,100 +ForegroundVisited=255,121,198 + +[Colors:Window] +BackgroundAlternate=230,230,230 +BackgroundNormal=248,248,242 +DecorationFocus=98,114,164 +DecorationHover=255,121,198 +ForegroundActive=98,114,164 +ForegroundInactive=208,208,208 +ForegroundLink=98,114,164 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=40,42,54 +ForegroundPositive=100,255,100 +ForegroundVisited=255,121,198 diff --git a/kde/color-schemes/Blade.colors b/kde/color-schemes/Blade.colors new file mode 100644 index 0000000..5a2dad2 --- /dev/null +++ b/kde/color-schemes/Blade.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Blade +ColorScheme=Blade +accentColor=128,255,234 + +[Colors:Button] +BackgroundAlternate=41,56,53 +BackgroundNormal=65,88,84 +DecorationFocus=128,255,234 +DecorationHover=138,255,128 +ForegroundActive=128,255,234 +ForegroundInactive=65,88,84 +ForegroundLink=128,255,234 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=138,255,128 + +[Colors:Complementary] +BackgroundAlternate=41,56,53 +BackgroundNormal=33,44,42 +DecorationFocus=128,255,234 +DecorationHover=138,255,128 +ForegroundActive=128,255,234 +ForegroundInactive=65,88,84 +ForegroundLink=128,255,234 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=138,255,128 + +[Colors:Header] +BackgroundAlternate=41,56,53 +BackgroundNormal=33,44,42 +DecorationFocus=128,255,234 +DecorationHover=138,255,128 +ForegroundActive=128,255,234 +ForegroundInactive=65,88,84 +ForegroundLink=128,255,234 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=138,255,128 + +[Colors:Selection] +BackgroundAlternate=128,255,234 +BackgroundNormal=128,255,234 +DecorationFocus=128,255,234 +DecorationHover=138,255,128 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=138,255,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=41,56,53 +BackgroundNormal=33,44,42 +DecorationFocus=128,255,234 +DecorationHover=138,255,128 +ForegroundActive=128,255,234 +ForegroundInactive=65,88,84 +ForegroundLink=128,255,234 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=138,255,128 + +[Colors:Window] +BackgroundAlternate=41,56,53 +BackgroundNormal=33,44,42 +DecorationFocus=128,255,234 +DecorationHover=138,255,128 +ForegroundActive=128,255,234 +ForegroundInactive=65,88,84 +ForegroundLink=128,255,234 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=138,255,128 diff --git a/kde/color-schemes/Buff.colors b/kde/color-schemes/Buff.colors new file mode 100644 index 0000000..939a76e --- /dev/null +++ b/kde/color-schemes/Buff.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Buff +ColorScheme=Buff +accentColor=255,202,128 + +[Colors:Button] +BackgroundAlternate=53,41,56 +BackgroundNormal=84,65,88 +DecorationFocus=255,202,128 +DecorationHover=255,149,128 +ForegroundActive=255,202,128 +ForegroundInactive=84,65,88 +ForegroundLink=255,202,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,149,128 + +[Colors:Complementary] +BackgroundAlternate=53,41,56 +BackgroundNormal=42,33,44 +DecorationFocus=255,202,128 +DecorationHover=255,149,128 +ForegroundActive=255,202,128 +ForegroundInactive=84,65,88 +ForegroundLink=255,202,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,149,128 + +[Colors:Header] +BackgroundAlternate=53,41,56 +BackgroundNormal=42,33,44 +DecorationFocus=255,202,128 +DecorationHover=255,149,128 +ForegroundActive=255,202,128 +ForegroundInactive=84,65,88 +ForegroundLink=255,202,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,149,128 + +[Colors:Selection] +BackgroundAlternate=255,202,128 +BackgroundNormal=255,202,128 +DecorationFocus=255,202,128 +DecorationHover=255,149,128 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=255,149,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=53,41,56 +BackgroundNormal=42,33,44 +DecorationFocus=255,202,128 +DecorationHover=255,149,128 +ForegroundActive=255,202,128 +ForegroundInactive=84,65,88 +ForegroundLink=255,202,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,149,128 + +[Colors:Window] +BackgroundAlternate=53,41,56 +BackgroundNormal=42,33,44 +DecorationFocus=255,202,128 +DecorationHover=255,149,128 +ForegroundActive=255,202,128 +ForegroundInactive=84,65,88 +ForegroundLink=255,202,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,149,128 diff --git a/kde/color-schemes/CatppuccinLatte.colors b/kde/color-schemes/CatppuccinLatte.colors new file mode 100644 index 0000000..c22e941 --- /dev/null +++ b/kde/color-schemes/CatppuccinLatte.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Catppuccin Latte +ColorScheme=CatppuccinLatte +accentColor=136,57,239 + +[Colors:Button] +BackgroundAlternate=230,233,239 +BackgroundNormal=204,208,218 +DecorationFocus=136,57,239 +DecorationHover=30,102,245 +ForegroundActive=136,57,239 +ForegroundInactive=204,208,218 +ForegroundLink=136,57,239 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=76,79,105 +ForegroundPositive=100,255,100 +ForegroundVisited=30,102,245 + +[Colors:Complementary] +BackgroundAlternate=230,233,239 +BackgroundNormal=239,241,245 +DecorationFocus=136,57,239 +DecorationHover=30,102,245 +ForegroundActive=136,57,239 +ForegroundInactive=204,208,218 +ForegroundLink=136,57,239 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=76,79,105 +ForegroundPositive=100,255,100 +ForegroundVisited=30,102,245 + +[Colors:Header] +BackgroundAlternate=230,233,239 +BackgroundNormal=239,241,245 +DecorationFocus=136,57,239 +DecorationHover=30,102,245 +ForegroundActive=136,57,239 +ForegroundInactive=204,208,218 +ForegroundLink=136,57,239 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=76,79,105 +ForegroundPositive=100,255,100 +ForegroundVisited=30,102,245 + +[Colors:Selection] +BackgroundAlternate=136,57,239 +BackgroundNormal=136,57,239 +DecorationFocus=136,57,239 +DecorationHover=30,102,245 +ForegroundActive=255,255,255 +ForegroundInactive=76,79,105 +ForegroundLink=30,102,245 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,0,0 + +[Colors:View] +BackgroundAlternate=230,233,239 +BackgroundNormal=239,241,245 +DecorationFocus=136,57,239 +DecorationHover=30,102,245 +ForegroundActive=136,57,239 +ForegroundInactive=204,208,218 +ForegroundLink=136,57,239 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=76,79,105 +ForegroundPositive=100,255,100 +ForegroundVisited=30,102,245 + +[Colors:Window] +BackgroundAlternate=230,233,239 +BackgroundNormal=239,241,245 +DecorationFocus=136,57,239 +DecorationHover=30,102,245 +ForegroundActive=136,57,239 +ForegroundInactive=204,208,218 +ForegroundLink=136,57,239 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=76,79,105 +ForegroundPositive=100,255,100 +ForegroundVisited=30,102,245 diff --git a/kde/color-schemes/CatppuccinMacchiato.colors b/kde/color-schemes/CatppuccinMacchiato.colors new file mode 100644 index 0000000..8d661b4 --- /dev/null +++ b/kde/color-schemes/CatppuccinMacchiato.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Catppuccin Macchiato +ColorScheme=CatppuccinMacchiato +accentColor=245,189,230 + +[Colors:Button] +BackgroundAlternate=54,58,79 +BackgroundNormal=73,77,100 +DecorationFocus=245,189,230 +DecorationHover=138,173,244 +ForegroundActive=245,189,230 +ForegroundInactive=73,77,100 +ForegroundLink=245,189,230 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=202,211,245 +ForegroundPositive=100,255,100 +ForegroundVisited=138,173,244 + +[Colors:Complementary] +BackgroundAlternate=54,58,79 +BackgroundNormal=36,39,58 +DecorationFocus=245,189,230 +DecorationHover=138,173,244 +ForegroundActive=245,189,230 +ForegroundInactive=73,77,100 +ForegroundLink=245,189,230 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=202,211,245 +ForegroundPositive=100,255,100 +ForegroundVisited=138,173,244 + +[Colors:Header] +BackgroundAlternate=54,58,79 +BackgroundNormal=36,39,58 +DecorationFocus=245,189,230 +DecorationHover=138,173,244 +ForegroundActive=245,189,230 +ForegroundInactive=73,77,100 +ForegroundLink=245,189,230 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=202,211,245 +ForegroundPositive=100,255,100 +ForegroundVisited=138,173,244 + +[Colors:Selection] +BackgroundAlternate=245,189,230 +BackgroundNormal=245,189,230 +DecorationFocus=245,189,230 +DecorationHover=138,173,244 +ForegroundActive=255,255,255 +ForegroundInactive=202,211,245 +ForegroundLink=138,173,244 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=54,58,79 +BackgroundNormal=36,39,58 +DecorationFocus=245,189,230 +DecorationHover=138,173,244 +ForegroundActive=245,189,230 +ForegroundInactive=73,77,100 +ForegroundLink=245,189,230 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=202,211,245 +ForegroundPositive=100,255,100 +ForegroundVisited=138,173,244 + +[Colors:Window] +BackgroundAlternate=54,58,79 +BackgroundNormal=36,39,58 +DecorationFocus=245,189,230 +DecorationHover=138,173,244 +ForegroundActive=245,189,230 +ForegroundInactive=73,77,100 +ForegroundLink=245,189,230 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=202,211,245 +ForegroundPositive=100,255,100 +ForegroundVisited=138,173,244 diff --git a/kde/color-schemes/CatppuccinMocha.colors b/kde/color-schemes/CatppuccinMocha.colors new file mode 100644 index 0000000..39227be --- /dev/null +++ b/kde/color-schemes/CatppuccinMocha.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Catppuccin Mocha +ColorScheme=CatppuccinMocha +accentColor=203,166,247 + +[Colors:Button] +BackgroundAlternate=49,50,68 +BackgroundNormal=69,71,90 +DecorationFocus=203,166,247 +DecorationHover=137,180,250 +ForegroundActive=203,166,247 +ForegroundInactive=69,71,90 +ForegroundLink=203,166,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=205,214,244 +ForegroundPositive=100,255,100 +ForegroundVisited=137,180,250 + +[Colors:Complementary] +BackgroundAlternate=49,50,68 +BackgroundNormal=30,30,46 +DecorationFocus=203,166,247 +DecorationHover=137,180,250 +ForegroundActive=203,166,247 +ForegroundInactive=69,71,90 +ForegroundLink=203,166,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=205,214,244 +ForegroundPositive=100,255,100 +ForegroundVisited=137,180,250 + +[Colors:Header] +BackgroundAlternate=49,50,68 +BackgroundNormal=30,30,46 +DecorationFocus=203,166,247 +DecorationHover=137,180,250 +ForegroundActive=203,166,247 +ForegroundInactive=69,71,90 +ForegroundLink=203,166,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=205,214,244 +ForegroundPositive=100,255,100 +ForegroundVisited=137,180,250 + +[Colors:Selection] +BackgroundAlternate=203,166,247 +BackgroundNormal=203,166,247 +DecorationFocus=203,166,247 +DecorationHover=137,180,250 +ForegroundActive=255,255,255 +ForegroundInactive=205,214,244 +ForegroundLink=137,180,250 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=49,50,68 +BackgroundNormal=30,30,46 +DecorationFocus=203,166,247 +DecorationHover=137,180,250 +ForegroundActive=203,166,247 +ForegroundInactive=69,71,90 +ForegroundLink=203,166,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=205,214,244 +ForegroundPositive=100,255,100 +ForegroundVisited=137,180,250 + +[Colors:Window] +BackgroundAlternate=49,50,68 +BackgroundNormal=30,30,46 +DecorationFocus=203,166,247 +DecorationHover=137,180,250 +ForegroundActive=203,166,247 +ForegroundInactive=69,71,90 +ForegroundLink=203,166,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=205,214,244 +ForegroundPositive=100,255,100 +ForegroundVisited=137,180,250 diff --git a/kde/color-schemes/Cyan.colors b/kde/color-schemes/Cyan.colors new file mode 100644 index 0000000..b3208a0 --- /dev/null +++ b/kde/color-schemes/Cyan.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Cyan +ColorScheme=Cyan +accentColor=128,255,234 + +[Colors:Button] +BackgroundAlternate=24,27,31 +BackgroundNormal=65,77,88 +DecorationFocus=128,255,234 +DecorationHover=149,128,255 +ForegroundActive=128,255,234 +ForegroundInactive=65,77,88 +ForegroundLink=128,255,234 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=149,128,255 + +[Colors:Complementary] +BackgroundAlternate=24,27,31 +BackgroundNormal=11,13,15 +DecorationFocus=128,255,234 +DecorationHover=149,128,255 +ForegroundActive=128,255,234 +ForegroundInactive=65,77,88 +ForegroundLink=128,255,234 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=149,128,255 + +[Colors:Header] +BackgroundAlternate=24,27,31 +BackgroundNormal=11,13,15 +DecorationFocus=128,255,234 +DecorationHover=149,128,255 +ForegroundActive=128,255,234 +ForegroundInactive=65,77,88 +ForegroundLink=128,255,234 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=149,128,255 + +[Colors:Selection] +BackgroundAlternate=128,255,234 +BackgroundNormal=128,255,234 +DecorationFocus=128,255,234 +DecorationHover=149,128,255 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=149,128,255 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=24,27,31 +BackgroundNormal=11,13,15 +DecorationFocus=128,255,234 +DecorationHover=149,128,255 +ForegroundActive=128,255,234 +ForegroundInactive=65,77,88 +ForegroundLink=128,255,234 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=149,128,255 + +[Colors:Window] +BackgroundAlternate=24,27,31 +BackgroundNormal=11,13,15 +DecorationFocus=128,255,234 +DecorationHover=149,128,255 +ForegroundActive=128,255,234 +ForegroundInactive=65,77,88 +ForegroundLink=128,255,234 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=149,128,255 diff --git a/kde/color-schemes/CyberpunkNeon.colors b/kde/color-schemes/CyberpunkNeon.colors new file mode 100644 index 0000000..bf72878 --- /dev/null +++ b/kde/color-schemes/CyberpunkNeon.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Cyberpunk Neon +ColorScheme=CyberpunkNeon +accentColor=255,0,127 + +[Colors:Button] +BackgroundAlternate=34,25,77 +BackgroundNormal=58,42,128 +DecorationFocus=255,0,127 +DecorationHover=0,240,255 +ForegroundActive=255,0,127 +ForegroundInactive=58,42,128 +ForegroundLink=255,0,127 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,255,159 +ForegroundPositive=100,255,100 +ForegroundVisited=0,240,255 + +[Colors:Complementary] +BackgroundAlternate=34,25,77 +BackgroundNormal=18,14,36 +DecorationFocus=255,0,127 +DecorationHover=0,240,255 +ForegroundActive=255,0,127 +ForegroundInactive=58,42,128 +ForegroundLink=255,0,127 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,255,159 +ForegroundPositive=100,255,100 +ForegroundVisited=0,240,255 + +[Colors:Header] +BackgroundAlternate=34,25,77 +BackgroundNormal=18,14,36 +DecorationFocus=255,0,127 +DecorationHover=0,240,255 +ForegroundActive=255,0,127 +ForegroundInactive=58,42,128 +ForegroundLink=255,0,127 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,255,159 +ForegroundPositive=100,255,100 +ForegroundVisited=0,240,255 + +[Colors:Selection] +BackgroundAlternate=255,0,127 +BackgroundNormal=255,0,127 +DecorationFocus=255,0,127 +DecorationHover=0,240,255 +ForegroundActive=255,255,255 +ForegroundInactive=0,255,159 +ForegroundLink=0,240,255 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=34,25,77 +BackgroundNormal=18,14,36 +DecorationFocus=255,0,127 +DecorationHover=0,240,255 +ForegroundActive=255,0,127 +ForegroundInactive=58,42,128 +ForegroundLink=255,0,127 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,255,159 +ForegroundPositive=100,255,100 +ForegroundVisited=0,240,255 + +[Colors:Window] +BackgroundAlternate=34,25,77 +BackgroundNormal=18,14,36 +DecorationFocus=255,0,127 +DecorationHover=0,240,255 +ForegroundActive=255,0,127 +ForegroundInactive=58,42,128 +ForegroundLink=255,0,127 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,255,159 +ForegroundPositive=100,255,100 +ForegroundVisited=0,240,255 diff --git a/kde/color-schemes/DraculaPro.colors b/kde/color-schemes/DraculaPro.colors new file mode 100644 index 0000000..449e9e1 --- /dev/null +++ b/kde/color-schemes/DraculaPro.colors @@ -0,0 +1,86 @@ +[General] +Name=Dracula Pro +ColorScheme=DraculaPro +accentColor=189,147,249 + +[Colors:Button] +BackgroundAlternate=30,31,41 +BackgroundNormal=40,42,54 +DecorationFocus=189,147,249 +DecorationHover=189,147,249 +ForegroundActive=189,147,249 +ForegroundInactive=98,114,164 +ForegroundLink=189,147,249 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 +ForegroundPositive=80,250,123 +ForegroundVisited=189,147,249 + +[Colors:Complementary] +BackgroundAlternate=30,31,41 +BackgroundNormal=40,42,54 +DecorationFocus=189,147,249 +DecorationHover=189,147,249 +ForegroundActive=189,147,249 +ForegroundInactive=98,114,164 +ForegroundLink=189,147,249 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 +ForegroundPositive=80,250,123 +ForegroundVisited=189,147,249 + +[Colors:Header] +BackgroundAlternate=30,31,41 +BackgroundNormal=30,31,41 +DecorationFocus=189,147,249 +DecorationHover=189,147,249 +ForegroundActive=189,147,249 +ForegroundInactive=98,114,164 +ForegroundLink=189,147,249 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 +ForegroundPositive=80,250,123 +ForegroundVisited=189,147,249 + +[Colors:Selection] +BackgroundAlternate=68,71,90 +BackgroundNormal=68,71,90 +DecorationFocus=189,147,249 +DecorationHover=189,147,249 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=189,147,249 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 + +[Colors:View] +BackgroundAlternate=30,31,41 +BackgroundNormal=40,42,54 +DecorationFocus=189,147,249 +DecorationHover=189,147,249 +ForegroundActive=189,147,249 +ForegroundInactive=98,114,164 +ForegroundLink=189,147,249 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 +ForegroundPositive=80,250,123 +ForegroundVisited=189,147,249 + +[Colors:Window] +BackgroundAlternate=30,31,41 +BackgroundNormal=40,42,54 +DecorationFocus=189,147,249 +DecorationHover=189,147,249 +ForegroundActive=189,147,249 +ForegroundInactive=98,114,164 +ForegroundLink=189,147,249 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 +ForegroundPositive=80,250,123 +ForegroundVisited=189,147,249 diff --git a/kde/color-schemes/DraculaProBlade.colors b/kde/color-schemes/DraculaProBlade.colors new file mode 100644 index 0000000..3bd3556 --- /dev/null +++ b/kde/color-schemes/DraculaProBlade.colors @@ -0,0 +1,86 @@ +[General] +Name=Dracula Pro (Blade) +ColorScheme=DraculaProBlade +accentColor=128,255,234 + +[Colors:Button] +BackgroundAlternate=26,35,34 +BackgroundNormal=33,44,42 +DecorationFocus=128,255,234 +DecorationHover=128,255,234 +ForegroundActive=128,255,234 +ForegroundInactive=112,169,159 +ForegroundLink=128,255,234 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Complementary] +BackgroundAlternate=26,35,34 +BackgroundNormal=33,44,42 +DecorationFocus=128,255,234 +DecorationHover=128,255,234 +ForegroundActive=128,255,234 +ForegroundInactive=112,169,159 +ForegroundLink=128,255,234 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Header] +BackgroundAlternate=26,35,34 +BackgroundNormal=26,35,34 +DecorationFocus=128,255,234 +DecorationHover=128,255,234 +ForegroundActive=128,255,234 +ForegroundInactive=112,169,159 +ForegroundLink=128,255,234 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Selection] +BackgroundAlternate=65,88,84 +BackgroundNormal=65,88,84 +DecorationFocus=128,255,234 +DecorationHover=128,255,234 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=128,255,234 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 + +[Colors:View] +BackgroundAlternate=26,35,34 +BackgroundNormal=33,44,42 +DecorationFocus=128,255,234 +DecorationHover=128,255,234 +ForegroundActive=128,255,234 +ForegroundInactive=112,169,159 +ForegroundLink=128,255,234 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Window] +BackgroundAlternate=26,35,34 +BackgroundNormal=33,44,42 +DecorationFocus=128,255,234 +DecorationHover=128,255,234 +ForegroundActive=128,255,234 +ForegroundInactive=112,169,159 +ForegroundLink=128,255,234 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 diff --git a/kde/color-schemes/DraculaProBuffy.colors b/kde/color-schemes/DraculaProBuffy.colors new file mode 100644 index 0000000..612cd9d --- /dev/null +++ b/kde/color-schemes/DraculaProBuffy.colors @@ -0,0 +1,86 @@ +[General] +Name=Dracula Pro (Buffy) +ColorScheme=DraculaProBuffy +accentColor=255,121,198 + +[Colors:Button] +BackgroundAlternate=30,31,41 +BackgroundNormal=40,42,54 +DecorationFocus=255,121,198 +DecorationHover=255,121,198 +ForegroundActive=255,121,198 +ForegroundInactive=98,114,164 +ForegroundLink=255,121,198 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 +ForegroundPositive=80,250,123 +ForegroundVisited=189,147,249 + +[Colors:Complementary] +BackgroundAlternate=30,31,41 +BackgroundNormal=40,42,54 +DecorationFocus=255,121,198 +DecorationHover=255,121,198 +ForegroundActive=255,121,198 +ForegroundInactive=98,114,164 +ForegroundLink=255,121,198 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 +ForegroundPositive=80,250,123 +ForegroundVisited=189,147,249 + +[Colors:Header] +BackgroundAlternate=30,31,41 +BackgroundNormal=30,31,41 +DecorationFocus=255,121,198 +DecorationHover=255,121,198 +ForegroundActive=255,121,198 +ForegroundInactive=98,114,164 +ForegroundLink=255,121,198 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 +ForegroundPositive=80,250,123 +ForegroundVisited=189,147,249 + +[Colors:Selection] +BackgroundAlternate=68,71,90 +BackgroundNormal=68,71,90 +DecorationFocus=255,121,198 +DecorationHover=255,121,198 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=255,121,198 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 + +[Colors:View] +BackgroundAlternate=30,31,41 +BackgroundNormal=40,42,54 +DecorationFocus=255,121,198 +DecorationHover=255,121,198 +ForegroundActive=255,121,198 +ForegroundInactive=98,114,164 +ForegroundLink=255,121,198 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 +ForegroundPositive=80,250,123 +ForegroundVisited=189,147,249 + +[Colors:Window] +BackgroundAlternate=30,31,41 +BackgroundNormal=40,42,54 +DecorationFocus=255,121,198 +DecorationHover=255,121,198 +ForegroundActive=255,121,198 +ForegroundInactive=98,114,164 +ForegroundLink=255,121,198 +ForegroundNegative=255,85,85 +ForegroundNeutral=255,184,108 +ForegroundNormal=248,248,242 +ForegroundPositive=80,250,123 +ForegroundVisited=189,147,249 diff --git a/kde/color-schemes/DraculaProLincoln.colors b/kde/color-schemes/DraculaProLincoln.colors new file mode 100644 index 0000000..698097c --- /dev/null +++ b/kde/color-schemes/DraculaProLincoln.colors @@ -0,0 +1,86 @@ +[General] +Name=Dracula Pro (Lincoln) +ColorScheme=DraculaProLincoln +accentColor=138,255,128 + +[Colors:Button] +BackgroundAlternate=23,29,27 +BackgroundNormal=30,37,34 +DecorationFocus=138,255,128 +DecorationHover=138,255,128 +ForegroundActive=138,255,128 +ForegroundInactive=101,125,115 +ForegroundLink=138,255,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Complementary] +BackgroundAlternate=23,29,27 +BackgroundNormal=30,37,34 +DecorationFocus=138,255,128 +DecorationHover=138,255,128 +ForegroundActive=138,255,128 +ForegroundInactive=101,125,115 +ForegroundLink=138,255,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Header] +BackgroundAlternate=23,29,27 +BackgroundNormal=23,29,27 +DecorationFocus=138,255,128 +DecorationHover=138,255,128 +ForegroundActive=138,255,128 +ForegroundInactive=101,125,115 +ForegroundLink=138,255,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Selection] +BackgroundAlternate=59,74,68 +BackgroundNormal=59,74,68 +DecorationFocus=138,255,128 +DecorationHover=138,255,128 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=138,255,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 + +[Colors:View] +BackgroundAlternate=23,29,27 +BackgroundNormal=30,37,34 +DecorationFocus=138,255,128 +DecorationHover=138,255,128 +ForegroundActive=138,255,128 +ForegroundInactive=101,125,115 +ForegroundLink=138,255,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Window] +BackgroundAlternate=23,29,27 +BackgroundNormal=30,37,34 +DecorationFocus=138,255,128 +DecorationHover=138,255,128 +ForegroundActive=138,255,128 +ForegroundInactive=101,125,115 +ForegroundLink=138,255,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 diff --git a/kde/color-schemes/DraculaProMorbius.colors b/kde/color-schemes/DraculaProMorbius.colors new file mode 100644 index 0000000..8f1026d --- /dev/null +++ b/kde/color-schemes/DraculaProMorbius.colors @@ -0,0 +1,86 @@ +[General] +Name=Dracula Pro (Morbius) +ColorScheme=DraculaProMorbius +accentColor=255,202,128 + +[Colors:Button] +BackgroundAlternate=26,22,31 +BackgroundNormal=33,28,39 +DecorationFocus=255,202,128 +DecorationHover=255,202,128 +ForegroundActive=255,202,128 +ForegroundInactive=112,97,128 +ForegroundLink=255,202,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Complementary] +BackgroundAlternate=26,22,31 +BackgroundNormal=33,28,39 +DecorationFocus=255,202,128 +DecorationHover=255,202,128 +ForegroundActive=255,202,128 +ForegroundInactive=112,97,128 +ForegroundLink=255,202,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Header] +BackgroundAlternate=26,22,31 +BackgroundNormal=26,22,31 +DecorationFocus=255,202,128 +DecorationHover=255,202,128 +ForegroundActive=255,202,128 +ForegroundInactive=112,97,128 +ForegroundLink=255,202,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Selection] +BackgroundAlternate=65,55,77 +BackgroundNormal=65,55,77 +DecorationFocus=255,202,128 +DecorationHover=255,202,128 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=255,202,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 + +[Colors:View] +BackgroundAlternate=26,22,31 +BackgroundNormal=33,28,39 +DecorationFocus=255,202,128 +DecorationHover=255,202,128 +ForegroundActive=255,202,128 +ForegroundInactive=112,97,128 +ForegroundLink=255,202,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Window] +BackgroundAlternate=26,22,31 +BackgroundNormal=33,28,39 +DecorationFocus=255,202,128 +DecorationHover=255,202,128 +ForegroundActive=255,202,128 +ForegroundInactive=112,97,128 +ForegroundLink=255,202,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 diff --git a/kde/color-schemes/DraculaProVanHelsing.colors b/kde/color-schemes/DraculaProVanHelsing.colors new file mode 100644 index 0000000..e76f743 --- /dev/null +++ b/kde/color-schemes/DraculaProVanHelsing.colors @@ -0,0 +1,86 @@ +[General] +Name=Dracula Pro (Van Helsing) +ColorScheme=DraculaProVanHelsing +accentColor=255,149,128 + +[Colors:Button] +BackgroundAlternate=28,27,39 +BackgroundNormal=36,35,50 +DecorationFocus=255,149,128 +DecorationHover=255,149,128 +ForegroundActive=255,149,128 +ForegroundInactive=120,117,168 +ForegroundLink=255,149,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Complementary] +BackgroundAlternate=28,27,39 +BackgroundNormal=36,35,50 +DecorationFocus=255,149,128 +DecorationHover=255,149,128 +ForegroundActive=255,149,128 +ForegroundInactive=120,117,168 +ForegroundLink=255,149,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Header] +BackgroundAlternate=28,27,39 +BackgroundNormal=28,27,39 +DecorationFocus=255,149,128 +DecorationHover=255,149,128 +ForegroundActive=255,149,128 +ForegroundInactive=120,117,168 +ForegroundLink=255,149,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Selection] +BackgroundAlternate=71,69,99 +BackgroundNormal=71,69,99 +DecorationFocus=255,149,128 +DecorationHover=255,149,128 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=255,149,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 + +[Colors:View] +BackgroundAlternate=28,27,39 +BackgroundNormal=36,35,50 +DecorationFocus=255,149,128 +DecorationHover=255,149,128 +ForegroundActive=255,149,128 +ForegroundInactive=120,117,168 +ForegroundLink=255,149,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 + +[Colors:Window] +BackgroundAlternate=28,27,39 +BackgroundNormal=36,35,50 +DecorationFocus=255,149,128 +DecorationHover=255,149,128 +ForegroundActive=255,149,128 +ForegroundInactive=120,117,168 +ForegroundLink=255,149,128 +ForegroundNegative=255,149,128 +ForegroundNeutral=255,202,128 +ForegroundNormal=248,248,242 +ForegroundPositive=138,255,128 +ForegroundVisited=149,128,255 diff --git a/kde/color-schemes/EmoZoey.colors b/kde/color-schemes/EmoZoey.colors new file mode 100644 index 0000000..5780795 --- /dev/null +++ b/kde/color-schemes/EmoZoey.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Emo Zoey +ColorScheme=EmoZoey +accentColor=255,42,133 + +[Colors:Button] +BackgroundAlternate=28,13,32 +BackgroundNormal=50,20,58 +DecorationFocus=255,42,133 +DecorationHover=147,51,234 +ForegroundActive=255,42,133 +ForegroundInactive=50,20,58 +ForegroundLink=255,42,133 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=244,215,247 +ForegroundPositive=100,255,100 +ForegroundVisited=147,51,234 + +[Colors:Complementary] +BackgroundAlternate=28,13,32 +BackgroundNormal=18,9,20 +DecorationFocus=255,42,133 +DecorationHover=147,51,234 +ForegroundActive=255,42,133 +ForegroundInactive=50,20,58 +ForegroundLink=255,42,133 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=244,215,247 +ForegroundPositive=100,255,100 +ForegroundVisited=147,51,234 + +[Colors:Header] +BackgroundAlternate=28,13,32 +BackgroundNormal=18,9,20 +DecorationFocus=255,42,133 +DecorationHover=147,51,234 +ForegroundActive=255,42,133 +ForegroundInactive=50,20,58 +ForegroundLink=255,42,133 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=244,215,247 +ForegroundPositive=100,255,100 +ForegroundVisited=147,51,234 + +[Colors:Selection] +BackgroundAlternate=255,42,133 +BackgroundNormal=255,42,133 +DecorationFocus=255,42,133 +DecorationHover=147,51,234 +ForegroundActive=255,255,255 +ForegroundInactive=244,215,247 +ForegroundLink=147,51,234 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=28,13,32 +BackgroundNormal=18,9,20 +DecorationFocus=255,42,133 +DecorationHover=147,51,234 +ForegroundActive=255,42,133 +ForegroundInactive=50,20,58 +ForegroundLink=255,42,133 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=244,215,247 +ForegroundPositive=100,255,100 +ForegroundVisited=147,51,234 + +[Colors:Window] +BackgroundAlternate=28,13,32 +BackgroundNormal=18,9,20 +DecorationFocus=255,42,133 +DecorationHover=147,51,234 +ForegroundActive=255,42,133 +ForegroundInactive=50,20,58 +ForegroundLink=255,42,133 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=244,215,247 +ForegroundPositive=100,255,100 +ForegroundVisited=147,51,234 diff --git a/kde/color-schemes/EverforestDark.colors b/kde/color-schemes/EverforestDark.colors new file mode 100644 index 0000000..3e8330b --- /dev/null +++ b/kde/color-schemes/EverforestDark.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Everforest Dark +ColorScheme=EverforestDark +accentColor=167,192,128 + +[Colors:Button] +BackgroundAlternate=52,63,68 +BackgroundNormal=61,72,77 +DecorationFocus=167,192,128 +DecorationHover=127,187,179 +ForegroundActive=167,192,128 +ForegroundInactive=61,72,77 +ForegroundLink=167,192,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=211,198,170 +ForegroundPositive=100,255,100 +ForegroundVisited=127,187,179 + +[Colors:Complementary] +BackgroundAlternate=52,63,68 +BackgroundNormal=45,53,59 +DecorationFocus=167,192,128 +DecorationHover=127,187,179 +ForegroundActive=167,192,128 +ForegroundInactive=61,72,77 +ForegroundLink=167,192,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=211,198,170 +ForegroundPositive=100,255,100 +ForegroundVisited=127,187,179 + +[Colors:Header] +BackgroundAlternate=52,63,68 +BackgroundNormal=45,53,59 +DecorationFocus=167,192,128 +DecorationHover=127,187,179 +ForegroundActive=167,192,128 +ForegroundInactive=61,72,77 +ForegroundLink=167,192,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=211,198,170 +ForegroundPositive=100,255,100 +ForegroundVisited=127,187,179 + +[Colors:Selection] +BackgroundAlternate=167,192,128 +BackgroundNormal=167,192,128 +DecorationFocus=167,192,128 +DecorationHover=127,187,179 +ForegroundActive=255,255,255 +ForegroundInactive=211,198,170 +ForegroundLink=127,187,179 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=52,63,68 +BackgroundNormal=45,53,59 +DecorationFocus=167,192,128 +DecorationHover=127,187,179 +ForegroundActive=167,192,128 +ForegroundInactive=61,72,77 +ForegroundLink=167,192,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=211,198,170 +ForegroundPositive=100,255,100 +ForegroundVisited=127,187,179 + +[Colors:Window] +BackgroundAlternate=52,63,68 +BackgroundNormal=45,53,59 +DecorationFocus=167,192,128 +DecorationHover=127,187,179 +ForegroundActive=167,192,128 +ForegroundInactive=61,72,77 +ForegroundLink=167,192,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=211,198,170 +ForegroundPositive=100,255,100 +ForegroundVisited=127,187,179 diff --git a/kde/color-schemes/EverforestLight.colors b/kde/color-schemes/EverforestLight.colors new file mode 100644 index 0000000..d25eba2 --- /dev/null +++ b/kde/color-schemes/EverforestLight.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Everforest Light +ColorScheme=EverforestLight +accentColor=141,161,1 + +[Colors:Button] +BackgroundAlternate=244,224,197 +BackgroundNormal=229,213,197 +DecorationFocus=141,161,1 +DecorationHover=53,167,124 +ForegroundActive=141,161,1 +ForegroundInactive=229,213,197 +ForegroundLink=141,161,1 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=92,106,114 +ForegroundPositive=100,255,100 +ForegroundVisited=53,167,124 + +[Colors:Complementary] +BackgroundAlternate=244,224,197 +BackgroundNormal=253,246,227 +DecorationFocus=141,161,1 +DecorationHover=53,167,124 +ForegroundActive=141,161,1 +ForegroundInactive=229,213,197 +ForegroundLink=141,161,1 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=92,106,114 +ForegroundPositive=100,255,100 +ForegroundVisited=53,167,124 + +[Colors:Header] +BackgroundAlternate=244,224,197 +BackgroundNormal=253,246,227 +DecorationFocus=141,161,1 +DecorationHover=53,167,124 +ForegroundActive=141,161,1 +ForegroundInactive=229,213,197 +ForegroundLink=141,161,1 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=92,106,114 +ForegroundPositive=100,255,100 +ForegroundVisited=53,167,124 + +[Colors:Selection] +BackgroundAlternate=141,161,1 +BackgroundNormal=141,161,1 +DecorationFocus=141,161,1 +DecorationHover=53,167,124 +ForegroundActive=255,255,255 +ForegroundInactive=92,106,114 +ForegroundLink=53,167,124 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,0,0 + +[Colors:View] +BackgroundAlternate=244,224,197 +BackgroundNormal=253,246,227 +DecorationFocus=141,161,1 +DecorationHover=53,167,124 +ForegroundActive=141,161,1 +ForegroundInactive=229,213,197 +ForegroundLink=141,161,1 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=92,106,114 +ForegroundPositive=100,255,100 +ForegroundVisited=53,167,124 + +[Colors:Window] +BackgroundAlternate=244,224,197 +BackgroundNormal=253,246,227 +DecorationFocus=141,161,1 +DecorationHover=53,167,124 +ForegroundActive=141,161,1 +ForegroundInactive=229,213,197 +ForegroundLink=141,161,1 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=92,106,114 +ForegroundPositive=100,255,100 +ForegroundVisited=53,167,124 diff --git a/kde/color-schemes/GruvboxDark.colors b/kde/color-schemes/GruvboxDark.colors new file mode 100644 index 0000000..7425acf --- /dev/null +++ b/kde/color-schemes/GruvboxDark.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Gruvbox Dark +ColorScheme=GruvboxDark +accentColor=254,128,25 + +[Colors:Button] +BackgroundAlternate=60,56,54 +BackgroundNormal=80,73,69 +DecorationFocus=254,128,25 +DecorationHover=250,189,47 +ForegroundActive=254,128,25 +ForegroundInactive=80,73,69 +ForegroundLink=254,128,25 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=235,219,178 +ForegroundPositive=100,255,100 +ForegroundVisited=250,189,47 + +[Colors:Complementary] +BackgroundAlternate=60,56,54 +BackgroundNormal=40,40,40 +DecorationFocus=254,128,25 +DecorationHover=250,189,47 +ForegroundActive=254,128,25 +ForegroundInactive=80,73,69 +ForegroundLink=254,128,25 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=235,219,178 +ForegroundPositive=100,255,100 +ForegroundVisited=250,189,47 + +[Colors:Header] +BackgroundAlternate=60,56,54 +BackgroundNormal=40,40,40 +DecorationFocus=254,128,25 +DecorationHover=250,189,47 +ForegroundActive=254,128,25 +ForegroundInactive=80,73,69 +ForegroundLink=254,128,25 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=235,219,178 +ForegroundPositive=100,255,100 +ForegroundVisited=250,189,47 + +[Colors:Selection] +BackgroundAlternate=254,128,25 +BackgroundNormal=254,128,25 +DecorationFocus=254,128,25 +DecorationHover=250,189,47 +ForegroundActive=255,255,255 +ForegroundInactive=235,219,178 +ForegroundLink=250,189,47 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=60,56,54 +BackgroundNormal=40,40,40 +DecorationFocus=254,128,25 +DecorationHover=250,189,47 +ForegroundActive=254,128,25 +ForegroundInactive=80,73,69 +ForegroundLink=254,128,25 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=235,219,178 +ForegroundPositive=100,255,100 +ForegroundVisited=250,189,47 + +[Colors:Window] +BackgroundAlternate=60,56,54 +BackgroundNormal=40,40,40 +DecorationFocus=254,128,25 +DecorationHover=250,189,47 +ForegroundActive=254,128,25 +ForegroundInactive=80,73,69 +ForegroundLink=254,128,25 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=235,219,178 +ForegroundPositive=100,255,100 +ForegroundVisited=250,189,47 diff --git a/kde/color-schemes/GruvboxLight.colors b/kde/color-schemes/GruvboxLight.colors new file mode 100644 index 0000000..3f6606d --- /dev/null +++ b/kde/color-schemes/GruvboxLight.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Gruvbox Light +ColorScheme=GruvboxLight +accentColor=175,58,3 + +[Colors:Button] +BackgroundAlternate=235,219,178 +BackgroundNormal=213,196,161 +DecorationFocus=175,58,3 +DecorationHover=181,118,20 +ForegroundActive=175,58,3 +ForegroundInactive=213,196,161 +ForegroundLink=175,58,3 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=60,56,54 +ForegroundPositive=100,255,100 +ForegroundVisited=181,118,20 + +[Colors:Complementary] +BackgroundAlternate=235,219,178 +BackgroundNormal=251,241,199 +DecorationFocus=175,58,3 +DecorationHover=181,118,20 +ForegroundActive=175,58,3 +ForegroundInactive=213,196,161 +ForegroundLink=175,58,3 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=60,56,54 +ForegroundPositive=100,255,100 +ForegroundVisited=181,118,20 + +[Colors:Header] +BackgroundAlternate=235,219,178 +BackgroundNormal=251,241,199 +DecorationFocus=175,58,3 +DecorationHover=181,118,20 +ForegroundActive=175,58,3 +ForegroundInactive=213,196,161 +ForegroundLink=175,58,3 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=60,56,54 +ForegroundPositive=100,255,100 +ForegroundVisited=181,118,20 + +[Colors:Selection] +BackgroundAlternate=175,58,3 +BackgroundNormal=175,58,3 +DecorationFocus=175,58,3 +DecorationHover=181,118,20 +ForegroundActive=255,255,255 +ForegroundInactive=60,56,54 +ForegroundLink=181,118,20 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,0,0 + +[Colors:View] +BackgroundAlternate=235,219,178 +BackgroundNormal=251,241,199 +DecorationFocus=175,58,3 +DecorationHover=181,118,20 +ForegroundActive=175,58,3 +ForegroundInactive=213,196,161 +ForegroundLink=175,58,3 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=60,56,54 +ForegroundPositive=100,255,100 +ForegroundVisited=181,118,20 + +[Colors:Window] +BackgroundAlternate=235,219,178 +BackgroundNormal=251,241,199 +DecorationFocus=175,58,3 +DecorationHover=181,118,20 +ForegroundActive=175,58,3 +ForegroundInactive=213,196,161 +ForegroundLink=175,58,3 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=60,56,54 +ForegroundPositive=100,255,100 +ForegroundVisited=181,118,20 diff --git a/kde/color-schemes/GruvboxMaterial.colors b/kde/color-schemes/GruvboxMaterial.colors new file mode 100644 index 0000000..7b24a7a --- /dev/null +++ b/kde/color-schemes/GruvboxMaterial.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Gruvbox Material +ColorScheme=GruvboxMaterial +accentColor=234,105,140 + +[Colors:Button] +BackgroundAlternate=40,40,40 +BackgroundNormal=60,56,54 +DecorationFocus=234,105,140 +DecorationHover=169,182,101 +ForegroundActive=234,105,140 +ForegroundInactive=60,56,54 +ForegroundLink=234,105,140 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=221,199,161 +ForegroundPositive=100,255,100 +ForegroundVisited=169,182,101 + +[Colors:Complementary] +BackgroundAlternate=40,40,40 +BackgroundNormal=29,32,33 +DecorationFocus=234,105,140 +DecorationHover=169,182,101 +ForegroundActive=234,105,140 +ForegroundInactive=60,56,54 +ForegroundLink=234,105,140 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=221,199,161 +ForegroundPositive=100,255,100 +ForegroundVisited=169,182,101 + +[Colors:Header] +BackgroundAlternate=40,40,40 +BackgroundNormal=29,32,33 +DecorationFocus=234,105,140 +DecorationHover=169,182,101 +ForegroundActive=234,105,140 +ForegroundInactive=60,56,54 +ForegroundLink=234,105,140 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=221,199,161 +ForegroundPositive=100,255,100 +ForegroundVisited=169,182,101 + +[Colors:Selection] +BackgroundAlternate=234,105,140 +BackgroundNormal=234,105,140 +DecorationFocus=234,105,140 +DecorationHover=169,182,101 +ForegroundActive=255,255,255 +ForegroundInactive=221,199,161 +ForegroundLink=169,182,101 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=40,40,40 +BackgroundNormal=29,32,33 +DecorationFocus=234,105,140 +DecorationHover=169,182,101 +ForegroundActive=234,105,140 +ForegroundInactive=60,56,54 +ForegroundLink=234,105,140 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=221,199,161 +ForegroundPositive=100,255,100 +ForegroundVisited=169,182,101 + +[Colors:Window] +BackgroundAlternate=40,40,40 +BackgroundNormal=29,32,33 +DecorationFocus=234,105,140 +DecorationHover=169,182,101 +ForegroundActive=234,105,140 +ForegroundInactive=60,56,54 +ForegroundLink=234,105,140 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=221,199,161 +ForegroundPositive=100,255,100 +ForegroundVisited=169,182,101 diff --git a/kde/color-schemes/Lincoln.colors b/kde/color-schemes/Lincoln.colors new file mode 100644 index 0000000..af4c7aa --- /dev/null +++ b/kde/color-schemes/Lincoln.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Lincoln +ColorScheme=Lincoln +accentColor=255,255,128 + +[Colors:Button] +BackgroundAlternate=56,53,42 +BackgroundNormal=88,84,65 +DecorationFocus=255,255,128 +DecorationHover=138,255,128 +ForegroundActive=255,255,128 +ForegroundInactive=88,84,65 +ForegroundLink=255,255,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=138,255,128 + +[Colors:Complementary] +BackgroundAlternate=56,53,42 +BackgroundNormal=44,42,33 +DecorationFocus=255,255,128 +DecorationHover=138,255,128 +ForegroundActive=255,255,128 +ForegroundInactive=88,84,65 +ForegroundLink=255,255,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=138,255,128 + +[Colors:Header] +BackgroundAlternate=56,53,42 +BackgroundNormal=44,42,33 +DecorationFocus=255,255,128 +DecorationHover=138,255,128 +ForegroundActive=255,255,128 +ForegroundInactive=88,84,65 +ForegroundLink=255,255,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=138,255,128 + +[Colors:Selection] +BackgroundAlternate=255,255,128 +BackgroundNormal=255,255,128 +DecorationFocus=255,255,128 +DecorationHover=138,255,128 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=138,255,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=56,53,42 +BackgroundNormal=44,42,33 +DecorationFocus=255,255,128 +DecorationHover=138,255,128 +ForegroundActive=255,255,128 +ForegroundInactive=88,84,65 +ForegroundLink=255,255,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=138,255,128 + +[Colors:Window] +BackgroundAlternate=56,53,42 +BackgroundNormal=44,42,33 +DecorationFocus=255,255,128 +DecorationHover=138,255,128 +ForegroundActive=255,255,128 +ForegroundInactive=88,84,65 +ForegroundLink=255,255,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=138,255,128 diff --git a/kde/color-schemes/MonokaiPro.colors b/kde/color-schemes/MonokaiPro.colors new file mode 100644 index 0000000..84433f6 --- /dev/null +++ b/kde/color-schemes/MonokaiPro.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Monokai Pro +ColorScheme=MonokaiPro +accentColor=255,216,102 + +[Colors:Button] +BackgroundAlternate=58,58,58 +BackgroundNormal=74,74,74 +DecorationFocus=255,216,102 +DecorationHover=255,97,136 +ForegroundActive=255,216,102 +ForegroundInactive=74,74,74 +ForegroundLink=255,216,102 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=252,252,250 +ForegroundPositive=100,255,100 +ForegroundVisited=255,97,136 + +[Colors:Complementary] +BackgroundAlternate=58,58,58 +BackgroundNormal=45,42,46 +DecorationFocus=255,216,102 +DecorationHover=255,97,136 +ForegroundActive=255,216,102 +ForegroundInactive=74,74,74 +ForegroundLink=255,216,102 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=252,252,250 +ForegroundPositive=100,255,100 +ForegroundVisited=255,97,136 + +[Colors:Header] +BackgroundAlternate=58,58,58 +BackgroundNormal=45,42,46 +DecorationFocus=255,216,102 +DecorationHover=255,97,136 +ForegroundActive=255,216,102 +ForegroundInactive=74,74,74 +ForegroundLink=255,216,102 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=252,252,250 +ForegroundPositive=100,255,100 +ForegroundVisited=255,97,136 + +[Colors:Selection] +BackgroundAlternate=255,216,102 +BackgroundNormal=255,216,102 +DecorationFocus=255,216,102 +DecorationHover=255,97,136 +ForegroundActive=255,255,255 +ForegroundInactive=252,252,250 +ForegroundLink=255,97,136 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=58,58,58 +BackgroundNormal=45,42,46 +DecorationFocus=255,216,102 +DecorationHover=255,97,136 +ForegroundActive=255,216,102 +ForegroundInactive=74,74,74 +ForegroundLink=255,216,102 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=252,252,250 +ForegroundPositive=100,255,100 +ForegroundVisited=255,97,136 + +[Colors:Window] +BackgroundAlternate=58,58,58 +BackgroundNormal=45,42,46 +DecorationFocus=255,216,102 +DecorationHover=255,97,136 +ForegroundActive=255,216,102 +ForegroundInactive=74,74,74 +ForegroundLink=255,216,102 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=252,252,250 +ForegroundPositive=100,255,100 +ForegroundVisited=255,97,136 diff --git a/kde/color-schemes/Morpheus.colors b/kde/color-schemes/Morpheus.colors new file mode 100644 index 0000000..0cea50d --- /dev/null +++ b/kde/color-schemes/Morpheus.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Morpheus +ColorScheme=Morpheus +accentColor=255,149,128 + +[Colors:Button] +BackgroundAlternate=56,42,43 +BackgroundNormal=88,65,69 +DecorationFocus=255,149,128 +DecorationHover=255,202,128 +ForegroundActive=255,149,128 +ForegroundInactive=88,65,69 +ForegroundLink=255,149,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,202,128 + +[Colors:Complementary] +BackgroundAlternate=56,42,43 +BackgroundNormal=44,33,34 +DecorationFocus=255,149,128 +DecorationHover=255,202,128 +ForegroundActive=255,149,128 +ForegroundInactive=88,65,69 +ForegroundLink=255,149,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,202,128 + +[Colors:Header] +BackgroundAlternate=56,42,43 +BackgroundNormal=44,33,34 +DecorationFocus=255,149,128 +DecorationHover=255,202,128 +ForegroundActive=255,149,128 +ForegroundInactive=88,65,69 +ForegroundLink=255,149,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,202,128 + +[Colors:Selection] +BackgroundAlternate=255,149,128 +BackgroundNormal=255,149,128 +DecorationFocus=255,149,128 +DecorationHover=255,202,128 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=255,202,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=56,42,43 +BackgroundNormal=44,33,34 +DecorationFocus=255,149,128 +DecorationHover=255,202,128 +ForegroundActive=255,149,128 +ForegroundInactive=88,65,69 +ForegroundLink=255,149,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,202,128 + +[Colors:Window] +BackgroundAlternate=56,42,43 +BackgroundNormal=44,33,34 +DecorationFocus=255,149,128 +DecorationHover=255,202,128 +ForegroundActive=255,149,128 +ForegroundInactive=88,65,69 +ForegroundLink=255,149,128 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,202,128 diff --git a/kde/color-schemes/NordDark.colors b/kde/color-schemes/NordDark.colors new file mode 100644 index 0000000..2722d44 --- /dev/null +++ b/kde/color-schemes/NordDark.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Nord Dark +ColorScheme=NordDark +accentColor=136,192,208 + +[Colors:Button] +BackgroundAlternate=59,66,82 +BackgroundNormal=67,76,94 +DecorationFocus=136,192,208 +DecorationHover=180,142,173 +ForegroundActive=136,192,208 +ForegroundInactive=67,76,94 +ForegroundLink=136,192,208 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=236,239,244 +ForegroundPositive=100,255,100 +ForegroundVisited=180,142,173 + +[Colors:Complementary] +BackgroundAlternate=59,66,82 +BackgroundNormal=46,52,64 +DecorationFocus=136,192,208 +DecorationHover=180,142,173 +ForegroundActive=136,192,208 +ForegroundInactive=67,76,94 +ForegroundLink=136,192,208 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=236,239,244 +ForegroundPositive=100,255,100 +ForegroundVisited=180,142,173 + +[Colors:Header] +BackgroundAlternate=59,66,82 +BackgroundNormal=46,52,64 +DecorationFocus=136,192,208 +DecorationHover=180,142,173 +ForegroundActive=136,192,208 +ForegroundInactive=67,76,94 +ForegroundLink=136,192,208 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=236,239,244 +ForegroundPositive=100,255,100 +ForegroundVisited=180,142,173 + +[Colors:Selection] +BackgroundAlternate=136,192,208 +BackgroundNormal=136,192,208 +DecorationFocus=136,192,208 +DecorationHover=180,142,173 +ForegroundActive=255,255,255 +ForegroundInactive=236,239,244 +ForegroundLink=180,142,173 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=59,66,82 +BackgroundNormal=46,52,64 +DecorationFocus=136,192,208 +DecorationHover=180,142,173 +ForegroundActive=136,192,208 +ForegroundInactive=67,76,94 +ForegroundLink=136,192,208 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=236,239,244 +ForegroundPositive=100,255,100 +ForegroundVisited=180,142,173 + +[Colors:Window] +BackgroundAlternate=59,66,82 +BackgroundNormal=46,52,64 +DecorationFocus=136,192,208 +DecorationHover=180,142,173 +ForegroundActive=136,192,208 +ForegroundInactive=67,76,94 +ForegroundLink=136,192,208 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=236,239,244 +ForegroundPositive=100,255,100 +ForegroundVisited=180,142,173 diff --git a/kde/color-schemes/NordLight.colors b/kde/color-schemes/NordLight.colors new file mode 100644 index 0000000..a35f686 --- /dev/null +++ b/kde/color-schemes/NordLight.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Nord Light +ColorScheme=NordLight +accentColor=94,129,172 + +[Colors:Button] +BackgroundAlternate=229,233,240 +BackgroundNormal=216,222,233 +DecorationFocus=94,129,172 +DecorationHover=136,192,208 +ForegroundActive=94,129,172 +ForegroundInactive=216,222,233 +ForegroundLink=94,129,172 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=46,52,64 +ForegroundPositive=100,255,100 +ForegroundVisited=136,192,208 + +[Colors:Complementary] +BackgroundAlternate=229,233,240 +BackgroundNormal=236,239,244 +DecorationFocus=94,129,172 +DecorationHover=136,192,208 +ForegroundActive=94,129,172 +ForegroundInactive=216,222,233 +ForegroundLink=94,129,172 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=46,52,64 +ForegroundPositive=100,255,100 +ForegroundVisited=136,192,208 + +[Colors:Header] +BackgroundAlternate=229,233,240 +BackgroundNormal=236,239,244 +DecorationFocus=94,129,172 +DecorationHover=136,192,208 +ForegroundActive=94,129,172 +ForegroundInactive=216,222,233 +ForegroundLink=94,129,172 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=46,52,64 +ForegroundPositive=100,255,100 +ForegroundVisited=136,192,208 + +[Colors:Selection] +BackgroundAlternate=94,129,172 +BackgroundNormal=94,129,172 +DecorationFocus=94,129,172 +DecorationHover=136,192,208 +ForegroundActive=255,255,255 +ForegroundInactive=46,52,64 +ForegroundLink=136,192,208 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,0,0 + +[Colors:View] +BackgroundAlternate=229,233,240 +BackgroundNormal=236,239,244 +DecorationFocus=94,129,172 +DecorationHover=136,192,208 +ForegroundActive=94,129,172 +ForegroundInactive=216,222,233 +ForegroundLink=94,129,172 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=46,52,64 +ForegroundPositive=100,255,100 +ForegroundVisited=136,192,208 + +[Colors:Window] +BackgroundAlternate=229,233,240 +BackgroundNormal=236,239,244 +DecorationFocus=94,129,172 +DecorationHover=136,192,208 +ForegroundActive=94,129,172 +ForegroundInactive=216,222,233 +ForegroundLink=94,129,172 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=46,52,64 +ForegroundPositive=100,255,100 +ForegroundVisited=136,192,208 diff --git a/kde/color-schemes/OneDarkPro.colors b/kde/color-schemes/OneDarkPro.colors new file mode 100644 index 0000000..34856de --- /dev/null +++ b/kde/color-schemes/OneDarkPro.colors @@ -0,0 +1,86 @@ +[General] +Name=QS One Dark Pro +ColorScheme=OneDarkPro +accentColor=97,175,239 + +[Colors:Button] +BackgroundAlternate=33,37,43 +BackgroundNormal=62,68,81 +DecorationFocus=97,175,239 +DecorationHover=198,120,221 +ForegroundActive=97,175,239 +ForegroundInactive=62,68,81 +ForegroundLink=97,175,239 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=171,178,191 +ForegroundPositive=100,255,100 +ForegroundVisited=198,120,221 + +[Colors:Complementary] +BackgroundAlternate=33,37,43 +BackgroundNormal=40,44,52 +DecorationFocus=97,175,239 +DecorationHover=198,120,221 +ForegroundActive=97,175,239 +ForegroundInactive=62,68,81 +ForegroundLink=97,175,239 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=171,178,191 +ForegroundPositive=100,255,100 +ForegroundVisited=198,120,221 + +[Colors:Header] +BackgroundAlternate=33,37,43 +BackgroundNormal=40,44,52 +DecorationFocus=97,175,239 +DecorationHover=198,120,221 +ForegroundActive=97,175,239 +ForegroundInactive=62,68,81 +ForegroundLink=97,175,239 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=171,178,191 +ForegroundPositive=100,255,100 +ForegroundVisited=198,120,221 + +[Colors:Selection] +BackgroundAlternate=97,175,239 +BackgroundNormal=97,175,239 +DecorationFocus=97,175,239 +DecorationHover=198,120,221 +ForegroundActive=255,255,255 +ForegroundInactive=171,178,191 +ForegroundLink=198,120,221 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=33,37,43 +BackgroundNormal=40,44,52 +DecorationFocus=97,175,239 +DecorationHover=198,120,221 +ForegroundActive=97,175,239 +ForegroundInactive=62,68,81 +ForegroundLink=97,175,239 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=171,178,191 +ForegroundPositive=100,255,100 +ForegroundVisited=198,120,221 + +[Colors:Window] +BackgroundAlternate=33,37,43 +BackgroundNormal=40,44,52 +DecorationFocus=97,175,239 +DecorationHover=198,120,221 +ForegroundActive=97,175,239 +ForegroundInactive=62,68,81 +ForegroundLink=97,175,239 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=171,178,191 +ForegroundPositive=100,255,100 +ForegroundVisited=198,120,221 diff --git a/kde/color-schemes/OneLight.colors b/kde/color-schemes/OneLight.colors new file mode 100644 index 0000000..550ff33 --- /dev/null +++ b/kde/color-schemes/OneLight.colors @@ -0,0 +1,86 @@ +[General] +Name=QS One Light +ColorScheme=OneLight +accentColor=64,120,242 + +[Colors:Button] +BackgroundAlternate=240,240,240 +BackgroundNormal=229,229,230 +DecorationFocus=64,120,242 +DecorationHover=166,38,164 +ForegroundActive=64,120,242 +ForegroundInactive=229,229,230 +ForegroundLink=64,120,242 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=56,58,66 +ForegroundPositive=100,255,100 +ForegroundVisited=166,38,164 + +[Colors:Complementary] +BackgroundAlternate=240,240,240 +BackgroundNormal=250,250,250 +DecorationFocus=64,120,242 +DecorationHover=166,38,164 +ForegroundActive=64,120,242 +ForegroundInactive=229,229,230 +ForegroundLink=64,120,242 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=56,58,66 +ForegroundPositive=100,255,100 +ForegroundVisited=166,38,164 + +[Colors:Header] +BackgroundAlternate=240,240,240 +BackgroundNormal=250,250,250 +DecorationFocus=64,120,242 +DecorationHover=166,38,164 +ForegroundActive=64,120,242 +ForegroundInactive=229,229,230 +ForegroundLink=64,120,242 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=56,58,66 +ForegroundPositive=100,255,100 +ForegroundVisited=166,38,164 + +[Colors:Selection] +BackgroundAlternate=64,120,242 +BackgroundNormal=64,120,242 +DecorationFocus=64,120,242 +DecorationHover=166,38,164 +ForegroundActive=255,255,255 +ForegroundInactive=56,58,66 +ForegroundLink=166,38,164 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,0,0 + +[Colors:View] +BackgroundAlternate=240,240,240 +BackgroundNormal=250,250,250 +DecorationFocus=64,120,242 +DecorationHover=166,38,164 +ForegroundActive=64,120,242 +ForegroundInactive=229,229,230 +ForegroundLink=64,120,242 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=56,58,66 +ForegroundPositive=100,255,100 +ForegroundVisited=166,38,164 + +[Colors:Window] +BackgroundAlternate=240,240,240 +BackgroundNormal=250,250,250 +DecorationFocus=64,120,242 +DecorationHover=166,38,164 +ForegroundActive=64,120,242 +ForegroundInactive=229,229,230 +ForegroundLink=64,120,242 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=56,58,66 +ForegroundPositive=100,255,100 +ForegroundVisited=166,38,164 diff --git a/kde/color-schemes/Pro.colors b/kde/color-schemes/Pro.colors new file mode 100644 index 0000000..2776dcb --- /dev/null +++ b/kde/color-schemes/Pro.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Pro +ColorScheme=Pro +accentColor=149,128,255 + +[Colors:Button] +BackgroundAlternate=43,41,56 +BackgroundNormal=69,65,88 +DecorationFocus=149,128,255 +DecorationHover=255,128,191 +ForegroundActive=149,128,255 +ForegroundInactive=69,65,88 +ForegroundLink=149,128,255 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,128,191 + +[Colors:Complementary] +BackgroundAlternate=43,41,56 +BackgroundNormal=34,33,44 +DecorationFocus=149,128,255 +DecorationHover=255,128,191 +ForegroundActive=149,128,255 +ForegroundInactive=69,65,88 +ForegroundLink=149,128,255 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,128,191 + +[Colors:Header] +BackgroundAlternate=43,41,56 +BackgroundNormal=34,33,44 +DecorationFocus=149,128,255 +DecorationHover=255,128,191 +ForegroundActive=149,128,255 +ForegroundInactive=69,65,88 +ForegroundLink=149,128,255 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,128,191 + +[Colors:Selection] +BackgroundAlternate=149,128,255 +BackgroundNormal=149,128,255 +DecorationFocus=149,128,255 +DecorationHover=255,128,191 +ForegroundActive=255,255,255 +ForegroundInactive=248,248,242 +ForegroundLink=255,128,191 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=43,41,56 +BackgroundNormal=34,33,44 +DecorationFocus=149,128,255 +DecorationHover=255,128,191 +ForegroundActive=149,128,255 +ForegroundInactive=69,65,88 +ForegroundLink=149,128,255 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,128,191 + +[Colors:Window] +BackgroundAlternate=43,41,56 +BackgroundNormal=34,33,44 +DecorationFocus=149,128,255 +DecorationHover=255,128,191 +ForegroundActive=149,128,255 +ForegroundInactive=69,65,88 +ForegroundLink=149,128,255 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=248,248,242 +ForegroundPositive=100,255,100 +ForegroundVisited=255,128,191 diff --git a/kde/color-schemes/RosPine.colors b/kde/color-schemes/RosPine.colors new file mode 100644 index 0000000..13c3c5c --- /dev/null +++ b/kde/color-schemes/RosPine.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Rosé Pine +ColorScheme=RosPine +accentColor=235,188,186 + +[Colors:Button] +BackgroundAlternate=31,29,46 +BackgroundNormal=38,35,58 +DecorationFocus=235,188,186 +DecorationHover=196,167,231 +ForegroundActive=235,188,186 +ForegroundInactive=38,35,58 +ForegroundLink=235,188,186 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=224,222,244 +ForegroundPositive=100,255,100 +ForegroundVisited=196,167,231 + +[Colors:Complementary] +BackgroundAlternate=31,29,46 +BackgroundNormal=25,23,36 +DecorationFocus=235,188,186 +DecorationHover=196,167,231 +ForegroundActive=235,188,186 +ForegroundInactive=38,35,58 +ForegroundLink=235,188,186 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=224,222,244 +ForegroundPositive=100,255,100 +ForegroundVisited=196,167,231 + +[Colors:Header] +BackgroundAlternate=31,29,46 +BackgroundNormal=25,23,36 +DecorationFocus=235,188,186 +DecorationHover=196,167,231 +ForegroundActive=235,188,186 +ForegroundInactive=38,35,58 +ForegroundLink=235,188,186 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=224,222,244 +ForegroundPositive=100,255,100 +ForegroundVisited=196,167,231 + +[Colors:Selection] +BackgroundAlternate=235,188,186 +BackgroundNormal=235,188,186 +DecorationFocus=235,188,186 +DecorationHover=196,167,231 +ForegroundActive=255,255,255 +ForegroundInactive=224,222,244 +ForegroundLink=196,167,231 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=31,29,46 +BackgroundNormal=25,23,36 +DecorationFocus=235,188,186 +DecorationHover=196,167,231 +ForegroundActive=235,188,186 +ForegroundInactive=38,35,58 +ForegroundLink=235,188,186 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=224,222,244 +ForegroundPositive=100,255,100 +ForegroundVisited=196,167,231 + +[Colors:Window] +BackgroundAlternate=31,29,46 +BackgroundNormal=25,23,36 +DecorationFocus=235,188,186 +DecorationHover=196,167,231 +ForegroundActive=235,188,186 +ForegroundInactive=38,35,58 +ForegroundLink=235,188,186 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=224,222,244 +ForegroundPositive=100,255,100 +ForegroundVisited=196,167,231 diff --git a/kde/color-schemes/RosPineDawn.colors b/kde/color-schemes/RosPineDawn.colors new file mode 100644 index 0000000..f9245da --- /dev/null +++ b/kde/color-schemes/RosPineDawn.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Rosé Pine Dawn +ColorScheme=RosPineDawn +accentColor=215,130,126 + +[Colors:Button] +BackgroundAlternate=242,233,225 +BackgroundNormal=228,215,208 +DecorationFocus=215,130,126 +DecorationHover=144,122,169 +ForegroundActive=215,130,126 +ForegroundInactive=228,215,208 +ForegroundLink=215,130,126 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=87,82,121 +ForegroundPositive=100,255,100 +ForegroundVisited=144,122,169 + +[Colors:Complementary] +BackgroundAlternate=242,233,225 +BackgroundNormal=250,244,237 +DecorationFocus=215,130,126 +DecorationHover=144,122,169 +ForegroundActive=215,130,126 +ForegroundInactive=228,215,208 +ForegroundLink=215,130,126 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=87,82,121 +ForegroundPositive=100,255,100 +ForegroundVisited=144,122,169 + +[Colors:Header] +BackgroundAlternate=242,233,225 +BackgroundNormal=250,244,237 +DecorationFocus=215,130,126 +DecorationHover=144,122,169 +ForegroundActive=215,130,126 +ForegroundInactive=228,215,208 +ForegroundLink=215,130,126 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=87,82,121 +ForegroundPositive=100,255,100 +ForegroundVisited=144,122,169 + +[Colors:Selection] +BackgroundAlternate=215,130,126 +BackgroundNormal=215,130,126 +DecorationFocus=215,130,126 +DecorationHover=144,122,169 +ForegroundActive=255,255,255 +ForegroundInactive=87,82,121 +ForegroundLink=144,122,169 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,0,0 + +[Colors:View] +BackgroundAlternate=242,233,225 +BackgroundNormal=250,244,237 +DecorationFocus=215,130,126 +DecorationHover=144,122,169 +ForegroundActive=215,130,126 +ForegroundInactive=228,215,208 +ForegroundLink=215,130,126 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=87,82,121 +ForegroundPositive=100,255,100 +ForegroundVisited=144,122,169 + +[Colors:Window] +BackgroundAlternate=242,233,225 +BackgroundNormal=250,244,237 +DecorationFocus=215,130,126 +DecorationHover=144,122,169 +ForegroundActive=215,130,126 +ForegroundInactive=228,215,208 +ForegroundLink=215,130,126 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=87,82,121 +ForegroundPositive=100,255,100 +ForegroundVisited=144,122,169 diff --git a/kde/color-schemes/RosPineMoon.colors b/kde/color-schemes/RosPineMoon.colors new file mode 100644 index 0000000..aa0a630 --- /dev/null +++ b/kde/color-schemes/RosPineMoon.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Rosé Pine Moon +ColorScheme=RosPineMoon +accentColor=234,154,151 + +[Colors:Button] +BackgroundAlternate=42,39,63 +BackgroundNormal=57,53,82 +DecorationFocus=234,154,151 +DecorationHover=196,167,231 +ForegroundActive=234,154,151 +ForegroundInactive=57,53,82 +ForegroundLink=234,154,151 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=224,222,244 +ForegroundPositive=100,255,100 +ForegroundVisited=196,167,231 + +[Colors:Complementary] +BackgroundAlternate=42,39,63 +BackgroundNormal=35,33,54 +DecorationFocus=234,154,151 +DecorationHover=196,167,231 +ForegroundActive=234,154,151 +ForegroundInactive=57,53,82 +ForegroundLink=234,154,151 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=224,222,244 +ForegroundPositive=100,255,100 +ForegroundVisited=196,167,231 + +[Colors:Header] +BackgroundAlternate=42,39,63 +BackgroundNormal=35,33,54 +DecorationFocus=234,154,151 +DecorationHover=196,167,231 +ForegroundActive=234,154,151 +ForegroundInactive=57,53,82 +ForegroundLink=234,154,151 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=224,222,244 +ForegroundPositive=100,255,100 +ForegroundVisited=196,167,231 + +[Colors:Selection] +BackgroundAlternate=234,154,151 +BackgroundNormal=234,154,151 +DecorationFocus=234,154,151 +DecorationHover=196,167,231 +ForegroundActive=255,255,255 +ForegroundInactive=224,222,244 +ForegroundLink=196,167,231 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=42,39,63 +BackgroundNormal=35,33,54 +DecorationFocus=234,154,151 +DecorationHover=196,167,231 +ForegroundActive=234,154,151 +ForegroundInactive=57,53,82 +ForegroundLink=234,154,151 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=224,222,244 +ForegroundPositive=100,255,100 +ForegroundVisited=196,167,231 + +[Colors:Window] +BackgroundAlternate=42,39,63 +BackgroundNormal=35,33,54 +DecorationFocus=234,154,151 +DecorationHover=196,167,231 +ForegroundActive=234,154,151 +ForegroundInactive=57,53,82 +ForegroundLink=234,154,151 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=224,222,244 +ForegroundPositive=100,255,100 +ForegroundVisited=196,167,231 diff --git a/kde/color-schemes/SolarizedDark.colors b/kde/color-schemes/SolarizedDark.colors new file mode 100644 index 0000000..d958b4d --- /dev/null +++ b/kde/color-schemes/SolarizedDark.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Solarized Dark +ColorScheme=SolarizedDark +accentColor=38,139,210 + +[Colors:Button] +BackgroundAlternate=7,54,66 +BackgroundNormal=88,110,117 +DecorationFocus=38,139,210 +DecorationHover=42,161,152 +ForegroundActive=38,139,210 +ForegroundInactive=88,110,117 +ForegroundLink=38,139,210 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=131,148,150 +ForegroundPositive=100,255,100 +ForegroundVisited=42,161,152 + +[Colors:Complementary] +BackgroundAlternate=7,54,66 +BackgroundNormal=0,43,54 +DecorationFocus=38,139,210 +DecorationHover=42,161,152 +ForegroundActive=38,139,210 +ForegroundInactive=88,110,117 +ForegroundLink=38,139,210 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=131,148,150 +ForegroundPositive=100,255,100 +ForegroundVisited=42,161,152 + +[Colors:Header] +BackgroundAlternate=7,54,66 +BackgroundNormal=0,43,54 +DecorationFocus=38,139,210 +DecorationHover=42,161,152 +ForegroundActive=38,139,210 +ForegroundInactive=88,110,117 +ForegroundLink=38,139,210 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=131,148,150 +ForegroundPositive=100,255,100 +ForegroundVisited=42,161,152 + +[Colors:Selection] +BackgroundAlternate=38,139,210 +BackgroundNormal=38,139,210 +DecorationFocus=38,139,210 +DecorationHover=42,161,152 +ForegroundActive=255,255,255 +ForegroundInactive=131,148,150 +ForegroundLink=42,161,152 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=7,54,66 +BackgroundNormal=0,43,54 +DecorationFocus=38,139,210 +DecorationHover=42,161,152 +ForegroundActive=38,139,210 +ForegroundInactive=88,110,117 +ForegroundLink=38,139,210 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=131,148,150 +ForegroundPositive=100,255,100 +ForegroundVisited=42,161,152 + +[Colors:Window] +BackgroundAlternate=7,54,66 +BackgroundNormal=0,43,54 +DecorationFocus=38,139,210 +DecorationHover=42,161,152 +ForegroundActive=38,139,210 +ForegroundInactive=88,110,117 +ForegroundLink=38,139,210 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=131,148,150 +ForegroundPositive=100,255,100 +ForegroundVisited=42,161,152 diff --git a/kde/color-schemes/SolarizedLight.colors b/kde/color-schemes/SolarizedLight.colors new file mode 100644 index 0000000..b8dcc04 --- /dev/null +++ b/kde/color-schemes/SolarizedLight.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Solarized Light +ColorScheme=SolarizedLight +accentColor=38,139,210 + +[Colors:Button] +BackgroundAlternate=238,232,213 +BackgroundNormal=147,161,161 +DecorationFocus=38,139,210 +DecorationHover=211,54,130 +ForegroundActive=38,139,210 +ForegroundInactive=147,161,161 +ForegroundLink=38,139,210 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=101,123,131 +ForegroundPositive=100,255,100 +ForegroundVisited=211,54,130 + +[Colors:Complementary] +BackgroundAlternate=238,232,213 +BackgroundNormal=253,246,227 +DecorationFocus=38,139,210 +DecorationHover=211,54,130 +ForegroundActive=38,139,210 +ForegroundInactive=147,161,161 +ForegroundLink=38,139,210 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=101,123,131 +ForegroundPositive=100,255,100 +ForegroundVisited=211,54,130 + +[Colors:Header] +BackgroundAlternate=238,232,213 +BackgroundNormal=253,246,227 +DecorationFocus=38,139,210 +DecorationHover=211,54,130 +ForegroundActive=38,139,210 +ForegroundInactive=147,161,161 +ForegroundLink=38,139,210 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=101,123,131 +ForegroundPositive=100,255,100 +ForegroundVisited=211,54,130 + +[Colors:Selection] +BackgroundAlternate=38,139,210 +BackgroundNormal=38,139,210 +DecorationFocus=38,139,210 +DecorationHover=211,54,130 +ForegroundActive=255,255,255 +ForegroundInactive=101,123,131 +ForegroundLink=211,54,130 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,0,0 + +[Colors:View] +BackgroundAlternate=238,232,213 +BackgroundNormal=253,246,227 +DecorationFocus=38,139,210 +DecorationHover=211,54,130 +ForegroundActive=38,139,210 +ForegroundInactive=147,161,161 +ForegroundLink=38,139,210 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=101,123,131 +ForegroundPositive=100,255,100 +ForegroundVisited=211,54,130 + +[Colors:Window] +BackgroundAlternate=238,232,213 +BackgroundNormal=253,246,227 +DecorationFocus=38,139,210 +DecorationHover=211,54,130 +ForegroundActive=38,139,210 +ForegroundInactive=147,161,161 +ForegroundLink=38,139,210 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=101,123,131 +ForegroundPositive=100,255,100 +ForegroundVisited=211,54,130 diff --git a/kde/color-schemes/TokyoNight.colors b/kde/color-schemes/TokyoNight.colors new file mode 100644 index 0000000..0feb565 --- /dev/null +++ b/kde/color-schemes/TokyoNight.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Tokyo Night +ColorScheme=TokyoNight +accentColor=122,162,247 + +[Colors:Button] +BackgroundAlternate=36,40,59 +BackgroundNormal=65,72,104 +DecorationFocus=122,162,247 +DecorationHover=187,154,247 +ForegroundActive=122,162,247 +ForegroundInactive=65,72,104 +ForegroundLink=122,162,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=192,202,245 +ForegroundPositive=100,255,100 +ForegroundVisited=187,154,247 + +[Colors:Complementary] +BackgroundAlternate=36,40,59 +BackgroundNormal=26,27,38 +DecorationFocus=122,162,247 +DecorationHover=187,154,247 +ForegroundActive=122,162,247 +ForegroundInactive=65,72,104 +ForegroundLink=122,162,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=192,202,245 +ForegroundPositive=100,255,100 +ForegroundVisited=187,154,247 + +[Colors:Header] +BackgroundAlternate=36,40,59 +BackgroundNormal=26,27,38 +DecorationFocus=122,162,247 +DecorationHover=187,154,247 +ForegroundActive=122,162,247 +ForegroundInactive=65,72,104 +ForegroundLink=122,162,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=192,202,245 +ForegroundPositive=100,255,100 +ForegroundVisited=187,154,247 + +[Colors:Selection] +BackgroundAlternate=122,162,247 +BackgroundNormal=122,162,247 +DecorationFocus=122,162,247 +DecorationHover=187,154,247 +ForegroundActive=255,255,255 +ForegroundInactive=192,202,245 +ForegroundLink=187,154,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=36,40,59 +BackgroundNormal=26,27,38 +DecorationFocus=122,162,247 +DecorationHover=187,154,247 +ForegroundActive=122,162,247 +ForegroundInactive=65,72,104 +ForegroundLink=122,162,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=192,202,245 +ForegroundPositive=100,255,100 +ForegroundVisited=187,154,247 + +[Colors:Window] +BackgroundAlternate=36,40,59 +BackgroundNormal=26,27,38 +DecorationFocus=122,162,247 +DecorationHover=187,154,247 +ForegroundActive=122,162,247 +ForegroundInactive=65,72,104 +ForegroundLink=122,162,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=192,202,245 +ForegroundPositive=100,255,100 +ForegroundVisited=187,154,247 diff --git a/kde/color-schemes/TokyoNightDay.colors b/kde/color-schemes/TokyoNightDay.colors new file mode 100644 index 0000000..6e95508 --- /dev/null +++ b/kde/color-schemes/TokyoNightDay.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Tokyo Night Day +ColorScheme=TokyoNightDay +accentColor=46,125,233 + +[Colors:Button] +BackgroundAlternate=213,214,219 +BackgroundNormal=196,200,218 +DecorationFocus=46,125,233 +DecorationHover=152,84,246 +ForegroundActive=46,125,233 +ForegroundInactive=196,200,218 +ForegroundLink=46,125,233 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=55,96,191 +ForegroundPositive=100,255,100 +ForegroundVisited=152,84,246 + +[Colors:Complementary] +BackgroundAlternate=213,214,219 +BackgroundNormal=225,226,231 +DecorationFocus=46,125,233 +DecorationHover=152,84,246 +ForegroundActive=46,125,233 +ForegroundInactive=196,200,218 +ForegroundLink=46,125,233 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=55,96,191 +ForegroundPositive=100,255,100 +ForegroundVisited=152,84,246 + +[Colors:Header] +BackgroundAlternate=213,214,219 +BackgroundNormal=225,226,231 +DecorationFocus=46,125,233 +DecorationHover=152,84,246 +ForegroundActive=46,125,233 +ForegroundInactive=196,200,218 +ForegroundLink=46,125,233 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=55,96,191 +ForegroundPositive=100,255,100 +ForegroundVisited=152,84,246 + +[Colors:Selection] +BackgroundAlternate=46,125,233 +BackgroundNormal=46,125,233 +DecorationFocus=46,125,233 +DecorationHover=152,84,246 +ForegroundActive=255,255,255 +ForegroundInactive=55,96,191 +ForegroundLink=152,84,246 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,0,0 + +[Colors:View] +BackgroundAlternate=213,214,219 +BackgroundNormal=225,226,231 +DecorationFocus=46,125,233 +DecorationHover=152,84,246 +ForegroundActive=46,125,233 +ForegroundInactive=196,200,218 +ForegroundLink=46,125,233 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=55,96,191 +ForegroundPositive=100,255,100 +ForegroundVisited=152,84,246 + +[Colors:Window] +BackgroundAlternate=213,214,219 +BackgroundNormal=225,226,231 +DecorationFocus=46,125,233 +DecorationHover=152,84,246 +ForegroundActive=46,125,233 +ForegroundInactive=196,200,218 +ForegroundLink=46,125,233 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=55,96,191 +ForegroundPositive=100,255,100 +ForegroundVisited=152,84,246 diff --git a/kde/color-schemes/TokyoNightStorm.colors b/kde/color-schemes/TokyoNightStorm.colors new file mode 100644 index 0000000..0d36bd9 --- /dev/null +++ b/kde/color-schemes/TokyoNightStorm.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Tokyo Night Storm +ColorScheme=TokyoNightStorm +accentColor=122,162,247 + +[Colors:Button] +BackgroundAlternate=31,35,53 +BackgroundNormal=65,72,104 +DecorationFocus=122,162,247 +DecorationHover=125,207,255 +ForegroundActive=122,162,247 +ForegroundInactive=65,72,104 +ForegroundLink=122,162,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=192,202,245 +ForegroundPositive=100,255,100 +ForegroundVisited=125,207,255 + +[Colors:Complementary] +BackgroundAlternate=31,35,53 +BackgroundNormal=36,40,59 +DecorationFocus=122,162,247 +DecorationHover=125,207,255 +ForegroundActive=122,162,247 +ForegroundInactive=65,72,104 +ForegroundLink=122,162,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=192,202,245 +ForegroundPositive=100,255,100 +ForegroundVisited=125,207,255 + +[Colors:Header] +BackgroundAlternate=31,35,53 +BackgroundNormal=36,40,59 +DecorationFocus=122,162,247 +DecorationHover=125,207,255 +ForegroundActive=122,162,247 +ForegroundInactive=65,72,104 +ForegroundLink=122,162,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=192,202,245 +ForegroundPositive=100,255,100 +ForegroundVisited=125,207,255 + +[Colors:Selection] +BackgroundAlternate=122,162,247 +BackgroundNormal=122,162,247 +DecorationFocus=122,162,247 +DecorationHover=125,207,255 +ForegroundActive=255,255,255 +ForegroundInactive=192,202,245 +ForegroundLink=125,207,255 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=31,35,53 +BackgroundNormal=36,40,59 +DecorationFocus=122,162,247 +DecorationHover=125,207,255 +ForegroundActive=122,162,247 +ForegroundInactive=65,72,104 +ForegroundLink=122,162,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=192,202,245 +ForegroundPositive=100,255,100 +ForegroundVisited=125,207,255 + +[Colors:Window] +BackgroundAlternate=31,35,53 +BackgroundNormal=36,40,59 +DecorationFocus=122,162,247 +DecorationHover=125,207,255 +ForegroundActive=122,162,247 +ForegroundInactive=65,72,104 +ForegroundLink=122,162,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=192,202,245 +ForegroundPositive=100,255,100 +ForegroundVisited=125,207,255 diff --git a/kde/color-schemes/ZoeyNight.colors b/kde/color-schemes/ZoeyNight.colors new file mode 100644 index 0000000..1c0ccb7 --- /dev/null +++ b/kde/color-schemes/ZoeyNight.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Zoey Night +ColorScheme=ZoeyNight +accentColor=244,114,182 + +[Colors:Button] +BackgroundAlternate=51,38,62 +BackgroundNormal=72,54,89 +DecorationFocus=244,114,182 +DecorationHover=192,132,252 +ForegroundActive=244,114,182 +ForegroundInactive=72,54,89 +ForegroundLink=244,114,182 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=245,230,248 +ForegroundPositive=100,255,100 +ForegroundVisited=192,132,252 + +[Colors:Complementary] +BackgroundAlternate=51,38,62 +BackgroundNormal=37,28,46 +DecorationFocus=244,114,182 +DecorationHover=192,132,252 +ForegroundActive=244,114,182 +ForegroundInactive=72,54,89 +ForegroundLink=244,114,182 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=245,230,248 +ForegroundPositive=100,255,100 +ForegroundVisited=192,132,252 + +[Colors:Header] +BackgroundAlternate=51,38,62 +BackgroundNormal=37,28,46 +DecorationFocus=244,114,182 +DecorationHover=192,132,252 +ForegroundActive=244,114,182 +ForegroundInactive=72,54,89 +ForegroundLink=244,114,182 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=245,230,248 +ForegroundPositive=100,255,100 +ForegroundVisited=192,132,252 + +[Colors:Selection] +BackgroundAlternate=244,114,182 +BackgroundNormal=244,114,182 +DecorationFocus=244,114,182 +DecorationHover=192,132,252 +ForegroundActive=255,255,255 +ForegroundInactive=245,230,248 +ForegroundLink=192,132,252 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=255,255,255 + +[Colors:View] +BackgroundAlternate=51,38,62 +BackgroundNormal=37,28,46 +DecorationFocus=244,114,182 +DecorationHover=192,132,252 +ForegroundActive=244,114,182 +ForegroundInactive=72,54,89 +ForegroundLink=244,114,182 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=245,230,248 +ForegroundPositive=100,255,100 +ForegroundVisited=192,132,252 + +[Colors:Window] +BackgroundAlternate=51,38,62 +BackgroundNormal=37,28,46 +DecorationFocus=244,114,182 +DecorationHover=192,132,252 +ForegroundActive=244,114,182 +ForegroundInactive=72,54,89 +ForegroundLink=244,114,182 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=245,230,248 +ForegroundPositive=100,255,100 +ForegroundVisited=192,132,252 diff --git a/kde/color-schemes/ZoeyPink.colors b/kde/color-schemes/ZoeyPink.colors new file mode 100644 index 0000000..f080cc8 --- /dev/null +++ b/kde/color-schemes/ZoeyPink.colors @@ -0,0 +1,86 @@ +[General] +Name=QS Zoey Pink +ColorScheme=ZoeyPink +accentColor=236,72,153 + +[Colors:Button] +BackgroundAlternate=251,207,232 +BackgroundNormal=244,114,182 +DecorationFocus=236,72,153 +DecorationHover=168,85,247 +ForegroundActive=236,72,153 +ForegroundInactive=244,114,182 +ForegroundLink=236,72,153 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=74,4,78 +ForegroundPositive=100,255,100 +ForegroundVisited=168,85,247 + +[Colors:Complementary] +BackgroundAlternate=251,207,232 +BackgroundNormal=255,240,245 +DecorationFocus=236,72,153 +DecorationHover=168,85,247 +ForegroundActive=236,72,153 +ForegroundInactive=244,114,182 +ForegroundLink=236,72,153 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=74,4,78 +ForegroundPositive=100,255,100 +ForegroundVisited=168,85,247 + +[Colors:Header] +BackgroundAlternate=251,207,232 +BackgroundNormal=255,240,245 +DecorationFocus=236,72,153 +DecorationHover=168,85,247 +ForegroundActive=236,72,153 +ForegroundInactive=244,114,182 +ForegroundLink=236,72,153 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=74,4,78 +ForegroundPositive=100,255,100 +ForegroundVisited=168,85,247 + +[Colors:Selection] +BackgroundAlternate=236,72,153 +BackgroundNormal=236,72,153 +DecorationFocus=236,72,153 +DecorationHover=168,85,247 +ForegroundActive=255,255,255 +ForegroundInactive=74,4,78 +ForegroundLink=168,85,247 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=0,0,0 + +[Colors:View] +BackgroundAlternate=251,207,232 +BackgroundNormal=255,240,245 +DecorationFocus=236,72,153 +DecorationHover=168,85,247 +ForegroundActive=236,72,153 +ForegroundInactive=244,114,182 +ForegroundLink=236,72,153 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=74,4,78 +ForegroundPositive=100,255,100 +ForegroundVisited=168,85,247 + +[Colors:Window] +BackgroundAlternate=251,207,232 +BackgroundNormal=255,240,245 +DecorationFocus=236,72,153 +DecorationHover=168,85,247 +ForegroundActive=236,72,153 +ForegroundInactive=244,114,182 +ForegroundLink=236,72,153 +ForegroundNegative=255,100,100 +ForegroundNeutral=255,200,100 +ForegroundNormal=74,4,78 +ForegroundPositive=100,255,100 +ForegroundVisited=168,85,247 diff --git a/kde/konsole/DraculaProBlade.colorscheme b/kde/konsole/DraculaProBlade.colorscheme new file mode 100644 index 0000000..62134e8 --- /dev/null +++ b/kde/konsole/DraculaProBlade.colorscheme @@ -0,0 +1,93 @@ +[Background] +Color=33,44,42 + +[BackgroundFaint] +Color=33,44,42 + +[BackgroundIntense] +Color=65,88,84 + +[Color0] +Color=33,44,42 + +[Color0Faint] +Color=26,35,34 + +[Color0Intense] +Color=76,103,98 + +[Color1] +Color=255,149,128 + +[Color1Faint] +Color=204,119,102 + +[Color1Intense] +Color=255,170,153 + +[Color2] +Color=138,255,128 + +[Color2Faint] +Color=110,204,102 + +[Color2Intense] +Color=162,255,153 + +[Color3] +Color=255,255,128 + +[Color3Faint] +Color=204,204,102 + +[Color3Intense] +Color=255,255,153 + +[Color4] +Color=149,128,255 + +[Color4Faint] +Color=119,102,204 + +[Color4Intense] +Color=170,153,255 + +[Color5] +Color=255,128,191 + +[Color5Faint] +Color=204,102,153 + +[Color5Intense] +Color=255,153,204 + +[Color6] +Color=128,255,234 + +[Color6Faint] +Color=102,204,187 + +[Color6Intense] +Color=153,255,238 + +[Color7] +Color=248,248,242 + +[Color7Faint] +Color=198,198,194 + +[Color7Intense] +Color=255,255,255 + +[Foreground] +Color=248,248,242 + +[ForegroundFaint] +Color=198,198,194 + +[ForegroundIntense] +Color=255,255,255 + +[General] +Description=Dracula Pro Blade +Opacity=0.9 diff --git a/kde/konsole/Quickshell.colorscheme b/kde/konsole/Quickshell.colorscheme new file mode 100644 index 0000000..bba7165 --- /dev/null +++ b/kde/konsole/Quickshell.colorscheme @@ -0,0 +1,94 @@ +[Background] +Color=#2d353b + +[BackgroundFaint] +Color=#343f44 + +[BackgroundIntense] +Color=#343f44 + +[Color0] +Color=#2d353b + +[Color0Faint] +Color=#2d353b + +[Color0Intense] +Color=#3d484d + +[Color1] +Color=#ff9580 + +[Color1Faint] +Color=#ff9580 + +[Color1Intense] +Color=#ff9580 + +[Color2] +Color=#8aff80 + +[Color2Faint] +Color=#8aff80 + +[Color2Intense] +Color=#8aff80 + +[Color3] +Color=#ffff80 + +[Color3Faint] +Color=#ffff80 + +[Color3Intense] +Color=#ffff80 + +[Color4] +Color=#a7c080 + +[Color4Faint] +Color=#a7c080 + +[Color4Intense] +Color=#a7c080 + +[Color5] +Color=#7fbbb3 + +[Color5Faint] +Color=#7fbbb3 + +[Color5Intense] +Color=#7fbbb3 + +[Color6] +Color=#80ffea + +[Color6Faint] +Color=#80ffea + +[Color6Intense] +Color=#80ffea + +[Color7] +Color=#d3c6aa + +[Color7Faint] +Color=#d3c6aa + +[Color7Intense] +Color=#ffffff + +[Foreground] +Color=#d3c6aa + +[ForegroundFaint] +Color=#d3c6aa + +[ForegroundIntense] +Color=#ffffff + +[General] +Description=Quickshell Dynamic Theme +Opacity=1 +Wallpaper=