summaryrefslogtreecommitdiffstats
path: root/src/btop_theme.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/btop_theme.hpp')
-rw-r--r--src/btop_theme.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/btop_theme.hpp b/src/btop_theme.hpp
index 65687ff..3fb30a4 100644
--- a/src/btop_theme.hpp
+++ b/src/btop_theme.hpp
@@ -4,7 +4,7 @@
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
+ http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
@@ -40,13 +40,13 @@ namespace Theme {
//* Args hexa: ["#000000"-"#ffffff"] for color, ["#00"-"#ff"] for greyscale
//* t_to_256: [true|false] convert 24bit value to 256 color value
//* depth: ["fg"|"bg"] for either a foreground color or a background color
- string hex_to_color(string hexa, bool t_to_256=false, const string& depth="fg");
+ string hex_to_color(string hexa, bool t_to_256=false, const string& depth="fg");
//* Generate escape sequence for 24-bit or 256 color and return as a string
//* Args r: [0-255], g: [0-255], b: [0-255]
//* t_to_256: [true|false] convert 24bit value to 256 color value
//* depth: ["fg"|"bg"] for either a foreground color or a background color
- string dec_to_color(int r, int g, int b, bool t_to_256=false, const string& depth="fg");
+ string dec_to_color(int r, int g, int b, bool t_to_256=false, const string& depth="fg");
//* Update list of paths for available themes
void updateThemes();