diff --git a/pgaweb/static/css/styleguide/dark_theme.scss b/pgaweb/static/css/styleguide/dark_theme.scss index 7e398ea..d282167 100644 --- a/pgaweb/static/css/styleguide/dark_theme.scss +++ b/pgaweb/static/css/styleguide/dark_theme.scss @@ -74,7 +74,7 @@ } .d-activeline { - background-color: #50B0F0; + background-color: #323E43; } .d-keyword{ diff --git a/pgaweb/static/css/styleguide/hc_theme.scss b/pgaweb/static/css/styleguide/hc_theme.scss index 345027c..2e3f17b 100644 --- a/pgaweb/static/css/styleguide/hc_theme.scss +++ b/pgaweb/static/css/styleguide/hc_theme.scss @@ -74,7 +74,7 @@ } .hc-activeline { - background-color: #50B0F0; + background-color: #063057; } .hc-keyword{ diff --git a/pgaweb/static/css/styleguide/sd_theme.scss b/pgaweb/static/css/styleguide/sd_theme.scss index 5837c3d..5162b0a 100644 --- a/pgaweb/static/css/styleguide/sd_theme.scss +++ b/pgaweb/static/css/styleguide/sd_theme.scss @@ -113,6 +113,10 @@ background-color: #50B0F0; } +.activeline-light { + background-color: #EDF9FF; +} + .keyword{ background-color: #990088; } diff --git a/pgaweb/templates/pgaweb/styleguide/color_palettes/dark_color_palette.html b/pgaweb/templates/pgaweb/styleguide/color_palettes/dark_color_palette.html index 530e1c9..a479b48 100644 --- a/pgaweb/templates/pgaweb/styleguide/color_palettes/dark_color_palette.html +++ b/pgaweb/templates/pgaweb/styleguide/color_palettes/dark_color_palette.html @@ -117,7 +117,7 @@
activeline
- #50B0F0 + #323E43
diff --git a/pgaweb/templates/pgaweb/styleguide/color_palettes/hc_color_palette.html b/pgaweb/templates/pgaweb/styleguide/color_palettes/hc_color_palette.html index febf8c9..c6b4954 100644 --- a/pgaweb/templates/pgaweb/styleguide/color_palettes/hc_color_palette.html +++ b/pgaweb/templates/pgaweb/styleguide/color_palettes/hc_color_palette.html @@ -117,7 +117,7 @@
activeline
- #50B0F0 + #063057
diff --git a/pgaweb/templates/pgaweb/styleguide/color_palettes/sd_color_palette.html b/pgaweb/templates/pgaweb/styleguide/color_palettes/sd_color_palette.html index 8c5d1e0..fa7f9da 100644 --- a/pgaweb/templates/pgaweb/styleguide/color_palettes/sd_color_palette.html +++ b/pgaweb/templates/pgaweb/styleguide/color_palettes/sd_color_palette.html @@ -144,6 +144,11 @@ activeline
#50B0F0
+
+
+ activeline-light
+ #EDF9FF +
keyword
diff --git a/requirements.txt b/requirements.txt index c3093f2..e5c0f19 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ Django==2.2.12 psycopg2-binary==2.8.5 -beautifulsoup4>=4.7.1 \ No newline at end of file +beautifulsoup4>=4.7.1 +Babel==2.9.1