diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-12-26 07:14:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-26 07:14:43 +0000 |
commit | ffc29b82142d992bb3c1fa012a3e93d57ff2a219 (patch) | |
tree | 6e3329b7761243672f694fc680ee3b25f0cddbe4 /src/settings.hpp | |
parent | 705938a0a8a02ece99bc6040c615ccf8ea5afa71 (diff) | |
parent | 6c89abb3c35c9a45c33d13bb0e3f5d4677cdb676 (diff) | |
download | abaddon-portaudio-ffc29b82142d992bb3c1fa012a3e93d57ff2a219.tar.gz abaddon-portaudio-ffc29b82142d992bb3c1fa012a3e93d57ff2a219.zip |
Merge pull request #252 from uowuo/theming
Use GTK themes
Diffstat (limited to 'src/settings.hpp')
-rw-r--r-- | src/settings.hpp | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/settings.hpp b/src/settings.hpp index 037233b..419734c 100644 --- a/src/settings.hpp +++ b/src/settings.hpp @@ -38,14 +38,11 @@ public: std::string UserAgent { "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36" }; // [style] - // TODO: convert to StyleProperty... or maybe not? i still cant figure out what the "correct" method is for this - std::string LinkColor { "rgba(40, 200, 180, 255)" }; - std::string ChannelsExpanderColor { "rgba(255, 83, 112, 255)" }; - std::string NSFWChannelColor { "#ed6666" }; - std::string ChannelColor { "#fbfbfb" }; - std::string MentionBadgeColor { "#b82525" }; - std::string MentionBadgeTextColor { "#fbfbfb" }; - std::string UnreadIndicatorColor { "#ffffff" }; + std::string ChannelsExpanderColor { "rgba(255, 83, 112, 0)" }; + std::string NSFWChannelColor { "#970d0d" }; + std::string MentionBadgeColor { "rgba(184, 37, 37, 0)" }; + std::string MentionBadgeTextColor { "rgba(251, 251, 251, 0)" }; + std::string UnreadIndicatorColor { "rgba(255, 255, 255, 0)" }; // [notifications] #ifdef _WIN32 |