Skip to content

Commit

Permalink
updated styles.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tsviz committed Mar 22, 2024
1 parent 4744482 commit 258833f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion PD-462.txt

This file was deleted.

6 changes: 1 addition & 5 deletions src/main/resources/static/js/styles.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
let themeColors;
if (window.enableSearchFeature) {
themeColors = {
'--h1-color': '#2196F3',
'--h1-color': window.searchFeatureColor || '#4CAF50',
'--th-bg-color': '#2196F3',
'--a-color': '#2196F3',
'--tr-bg-color': '#c2e0fb',
'--a-color': '#2196F3',
};
} else {
themeColors = {
'--h1-color': '#4CAF50',
'--th-bg-color': '#4CAF50',
'--a-color': '#4CAF50',
'--tr-bg-color': '#fbfde3',
'--button-color': '#4CAF50',
'--button-hover-color': '#388E3C',
'--a-color': '#4CAF50',
};
}

Expand Down

0 comments on commit 258833f

Please sign in to comment.