aboutsummaryrefslogtreecommitdiff
path: root/src/Theme.cpp
blob: f6fe9e5699b9481f405a494f14c8467cd526a68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include "../include/Theme.hpp"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <assert.h>

namespace QuickMedia {
    static bool themes_initialized = false;
    static int current_theme = Theme::THEME_DARK;

    static Theme themes[2];

    static void init_theme_dark() {
        themes[Theme::THEME_DARK].background_color = sf::Color(21, 25, 30);
        themes[Theme::THEME_DARK].text_color = sf::Color(255, 255, 255);
        themes[Theme::THEME_DARK].faded_text_color = sf::Color(255, 255, 255, 179);
        themes[Theme::THEME_DARK].shade_color = sf::Color(33, 37, 44);
        themes[Theme::THEME_DARK].selected_color = sf::Color(55, 60, 68);
        themes[Theme::THEME_DARK].card_item_background_color = sf::Color(28, 32, 39);
        themes[Theme::THEME_DARK].replies_text_color = sf::Color(129, 162, 190);
        themes[Theme::THEME_DARK].placeholder_text_color = sf::Color(255, 255, 255, 100);
        themes[Theme::THEME_DARK].image_loading_background_color = sf::Color(52, 58, 70);
        themes[Theme::THEME_DARK].attention_alert_text_color = sf::Color(255, 100, 100);
        themes[Theme::THEME_DARK].cancel_button_background_color = sf::Color(41, 45, 50);
        themes[Theme::THEME_DARK].confirm_button_background_color = sf::Color(31, 117, 255);
        themes[Theme::THEME_DARK].loading_bar_color = sf::Color(31, 117, 255);
        themes[Theme::THEME_DARK].embedded_item_border_color = sf::Color(255, 255, 255);
        themes[Theme::THEME_DARK].provisional_message_color = sf::Color(255, 255, 255, 150);
        themes[Theme::THEME_DARK].failed_text_color = sf::Color(255, 0, 0);
        themes[Theme::THEME_DARK].timestamp_text_color = sf::Color(185, 190, 198, 100);
        themes[Theme::THEME_DARK].new_items_alert_color = sf::Color(128, 50, 50);
        themes[Theme::THEME_DARK].arrow_color = sf::Color(255, 255, 255, 175);
        themes[Theme::THEME_DARK].url_text_color = sf::Color(35, 140, 245);
        themes[Theme::THEME_DARK].loading_page_color = sf::Color(175, 180, 188);
        themes[Theme::THEME_DARK].blur_enabled = true;
    }

    static void init_theme_nord() {
        themes[Theme::THEME_NORD].background_color = sf::Color(46, 52, 64);
        themes[Theme::THEME_NORD].text_color = sf::Color(236, 239, 244);
        themes[Theme::THEME_NORD].faded_text_color = sf::Color(229, 233, 240);
        themes[Theme::THEME_NORD].shade_color = sf::Color(67, 76, 94);
        themes[Theme::THEME_NORD].selected_color = sf::Color(59, 66, 82);
        themes[Theme::THEME_NORD].card_item_background_color = sf::Color(76, 86, 106);
        themes[Theme::THEME_NORD].replies_text_color = sf::Color(136, 192, 208);
        themes[Theme::THEME_NORD].placeholder_text_color = sf::Color(236, 239, 244);
        themes[Theme::THEME_NORD].image_loading_background_color = sf::Color(216, 222, 233);
        themes[Theme::THEME_NORD].attention_alert_text_color = sf::Color(191, 97, 106);
        themes[Theme::THEME_NORD].cancel_button_background_color = sf::Color(229, 233, 240);
        themes[Theme::THEME_NORD].confirm_button_background_color = sf::Color(229, 233, 240);
        themes[Theme::THEME_NORD].loading_bar_color = sf::Color(136, 192, 208);
        themes[Theme::THEME_NORD].embedded_item_border_color = sf::Color(216, 222, 233);
        themes[Theme::THEME_NORD].provisional_message_color = sf::Color(236, 239, 244);
        themes[Theme::THEME_NORD].failed_text_color = sf::Color(191, 97, 106);
        themes[Theme::THEME_NORD].timestamp_text_color = sf::Color(76, 86, 106);
        themes[Theme::THEME_NORD].new_items_alert_color = sf::Color(235, 203, 139);
        themes[Theme::THEME_NORD].arrow_color = sf::Color(236, 239, 244);
        themes[Theme::THEME_NORD].url_text_color = sf::Color(136, 192, 208);
        themes[Theme::THEME_NORD].loading_page_color = sf::Color(229, 233, 240);
    }

    void init_themes() {
        if(themes_initialized)
            return;

        init_theme_dark();
        init_theme_nord();
        themes_initialized = true;

        char *theme = getenv("QM_THEME");
        if(!theme)
            return;

        if(strcmp(theme, "default") == 0)
            set_current_theme(Theme::THEME_DARK);
        else if(strcmp(theme, "nord") == 0)
            set_current_theme(Theme::THEME_NORD);
        else
            fprintf(stderr, "Warning: Invalid theme %s, using the default theme...\n", theme);
    }

    void set_current_theme(int theme) {
        current_theme = theme;
    }

    Theme& get_current_theme() {
        assert(themes_initialized);
        return themes[current_theme];
    }
}