aboutsummaryrefslogtreecommitdiff
path: root/src/Theme.cpp
blob: 661672153c4bfba28d044b274657f43e4963292d (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
#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[1];

    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;
    }

    void init_themes() {
        if(themes_initialized)
            return;

        init_theme_dark();
        themes_initialized = true;

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

        if(strcmp(theme, "default") == 0)
            set_current_theme(Theme::THEME_DARK);
        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];
    }
}