Skip to content

Commit 55005c5

Browse files
authored
Change tooltip background color for light theme (#515)
* Change tooltip background color for light theme * v4.3.16 * Add tooltip text color
1 parent a9ea8f3 commit 55005c5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netdata/netdata-ui",
3-
"version": "4.3.15",
3+
"version": "4.3.16",
44
"description": "netdata UI kit",
55
"main": "dist/index.js",
66
"module": "dist/es6/index.js",

src/theme/dark/colors.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ const appColors = {
6666
selected: rawColors.neutral.grey55,
6767
highlight: rawColors.neutral.grey55,
6868
tooltip: rawColors.neutral.outerSpace,
69+
tooltipText: rawColors.neutral.white,
6970
bright: rawColors.neutral.white,
7071
text: rawColors.neutral.grey155,
7172
textLite: rawColors.neutral.grey120,

src/theme/default/colors.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ const appColors = {
6666
selected: rawColors.neutral.grey180,
6767
highlight: rawColors.neutral.grey180,
6868

69-
tooltip: rawColors.neutral.shark,
69+
tooltip: rawColors.neutral.grey180,
70+
tooltipText: rawColors.neutral.grey100,
7071
bright: rawColors.neutral.white,
7172
text: rawColors.neutral.grey100,
7273
textLite: rawColors.neutral.grey120,

0 commit comments

Comments
 (0)