Skip to content

Commit d8b85da

Browse files
committed
Fix low contract on properties/accessors in light mode
Resolves #2795
1 parent 9471039 commit d8b85da

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ title: Changelog
66

77
### Bug Fixes
88

9-
- Add special handling for import types with type errors discarded with
10-
ts-expect-error, #2792.
9+
- Add special handling for import types with type errors discarded with ts-expect-error, #2792.
10+
- Fixed low contrast in default colors for properties/accessors in light mode, #2795.
1111

1212
## v0.27.2 (2024-11-29)
1313

static/style.css

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
--light-color-ts-function: #572be7;
3030
--light-color-ts-class: #1f70c2;
3131
--light-color-ts-interface: #108024;
32-
--light-color-ts-constructor: #4d7fff;
33-
--light-color-ts-property: #ff984d;
34-
--light-color-ts-method: #ff4db8;
32+
--light-color-ts-constructor: var(--light-color-ts-class);
33+
--light-color-ts-property: #9f5f30;
34+
--light-color-ts-method: #be3989;
3535
--light-color-ts-reference: #ff4d82;
3636
--light-color-ts-call-signature: var(--light-color-ts-method);
3737
--light-color-ts-index-signature: var(--light-color-ts-property);
@@ -41,7 +41,7 @@
4141
--light-color-ts-parameter: var(--light-color-ts-variable);
4242
/* type literal not included as links will never be generated to it */
4343
--light-color-ts-type-parameter: #a55c0e;
44-
--light-color-ts-accessor: #ff4d4d;
44+
--light-color-ts-accessor: #c73c3c;
4545
--light-color-ts-get-signature: var(--light-color-ts-accessor);
4646
--light-color-ts-set-signature: var(--light-color-ts-accessor);
4747
--light-color-ts-type-alias: #d51270;
@@ -86,7 +86,7 @@
8686
--dark-color-ts-function: #a280ff;
8787
--dark-color-ts-class: #8ac4ff;
8888
--dark-color-ts-interface: #6cff87;
89-
--dark-color-ts-constructor: #4d7fff;
89+
--dark-color-ts-constructor: var(--dark-color-ts-class);
9090
--dark-color-ts-property: #ff984d;
9191
--dark-color-ts-method: #ff4db8;
9292
--dark-color-ts-reference: #ff4d82;
@@ -96,7 +96,7 @@
9696
--dark-color-ts-parameter: var(--dark-color-ts-variable);
9797
/* type literal not included as links will never be generated to it */
9898
--dark-color-ts-type-parameter: #e07d13;
99-
--dark-color-ts-accessor: #ff4d4d;
99+
--dark-color-ts-accessor: #ff6060;
100100
--dark-color-ts-get-signature: var(--dark-color-ts-accessor);
101101
--dark-color-ts-set-signature: var(--dark-color-ts-accessor);
102102
--dark-color-ts-type-alias: #ff6492;

0 commit comments

Comments
 (0)