diff --git a/CHANGELOG.md b/CHANGELOG.md
index 37d0c843..5074274f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,10 @@ Note: Many earlier versions are not specified, that's too much work.
When a `@types` dependency updates, they almost always don't affect anything.
+## v0.36.3
+
+- (css) Fix strategy disable not changing link color + slightly more accessible disabled color
+
## v0.36.2
- (code) Use new Set methods, simplifies code. This shouldn't break support for old browsers.
diff --git a/package.json b/package.json
index fdcedd9c..e55ab14c 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "solver",
- "version": "0.36.2",
+ "version": "0.36.3",
"private": true,
"homepage": "https://icecream17.github.io/solver",
"dependencies": {
diff --git a/src/Elems/AsideElems/StrategyList.css b/src/Elems/AsideElems/StrategyList.css
index 62faed9d..ec0729d4 100644
--- a/src/Elems/AsideElems/StrategyList.css
+++ b/src/Elems/AsideElems/StrategyList.css
@@ -34,7 +34,10 @@
/* Disabled strategy item */
.StrategyItem.disabled {
- color: rgb(170, 170, 170);
+ color: #bbb;
+ --link-color: #abb8e8;
+ --link-visited-color: #c1b6c9;
+ --link-active-color: #df8367;
}
.StrategyItem.disabled:nth-child(odd) {
diff --git a/src/Elems/Version.tsx b/src/Elems/Version.tsx
index 27374702..a8703312 100644
--- a/src/Elems/Version.tsx
+++ b/src/Elems/Version.tsx
@@ -9,7 +9,7 @@ import StaticComponent from './StaticComponent';
*
*/
function Version () {
- return v0.36.2
+ return v0.36.3
}
export default StaticComponent(Version)