15337 |
efrain |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
|
|
|
4 |
|
|
|
5 |
|
|
|
6 |
|
|
|
7 |
echo <<<CSS
|
|
|
8 |
<style>
|
|
|
9 |
:root {
|
|
|
10 |
--bg-color: {$network->css_bg_color};
|
|
|
11 |
--body-bg-color: {$network->css_body_bg_color};
|
|
|
12 |
--bg-color-secondary: {$network->css_bg_color_secondary};
|
|
|
13 |
--font-color: {$network->css_font_color};
|
|
|
14 |
--font-color-hover: {$network->css_font_color_hover};
|
|
|
15 |
--title-color: {$network->css_title_color};
|
|
|
16 |
--subtitle-color: {$network->css_subtitle_color};
|
|
|
17 |
--icons-color: {$network->css_icons_color};
|
|
|
18 |
--button-bg: {$network->css_button_bg};
|
|
|
19 |
--button-bg-hover: {$network->css_button_bg_hover};
|
|
|
20 |
--button-text-color: {$network->css_button_text_color};
|
|
|
21 |
--button-bg-secondary: {$network->css_button_bg_secondary};
|
|
|
22 |
--button-bg-secondary-hover: {$network->css_button_bg_secondary_hover};
|
|
|
23 |
--button-text-color-secondary: {$network->css_button_text_color_secondary};
|
|
|
24 |
--button-bg-tertiary: {$network->css_button_bg_tertiary};
|
|
|
25 |
--button-text-color-tertiary: {$network->css_button_text_color_tertiary};
|
|
|
26 |
--border-primary: {$network->css_border_primary};
|
|
|
27 |
--border-trasnparent: {$network->css_border_trasnparent};
|
|
|
28 |
--chat-received: {$network->css_chat_received};
|
|
|
29 |
--chat-send: {$network->css_chat_send};
|
|
|
30 |
--chat-color: {$network->css_chat_color};
|
15357 |
efrain |
31 |
|
15337 |
efrain |
32 |
--light-gray: {$network->css_light_gray};
|
|
|
33 |
--gray: {$network->css_gray};
|
|
|
34 |
--danger: {$network->css_danger};
|
|
|
35 |
--danger-hover: {$network->css_danger_hover};
|
|
|
36 |
--online-green: {$network->css_online_green};
|
15357 |
efrain |
37 |
|
15337 |
efrain |
38 |
--border-gray-primary: {$network->css_border_gray_primary};
|
|
|
39 |
--white: {$network->css_white};
|
|
|
40 |
|
15357 |
efrain |
41 |
|
|
|
42 |
|
15337 |
efrain |
43 |
--white-backdrop: {$network->css_white_backdrop};
|
|
|
44 |
--border-radius: {$network->css_border_radius};
|
|
|
45 |
--light-shadow: {$network->css_light_shadow};
|
|
|
46 |
--shadow: {$network->css_shadow};
|
|
|
47 |
}
|
|
|
48 |
</style>
|
|
|
49 |
CSS;
|