Skip to content

Commit

Permalink
Merge pull request tinacious#21 from tinacious/upgrade-high-contrast
Browse files Browse the repository at this point in the history
Upgrade high-contrast theme, Light theme improvements
  • Loading branch information
tinacious authored Dec 28, 2020
2 parents edc052e + bea80be commit b0d6f3e
Show file tree
Hide file tree
Showing 8 changed files with 1,249 additions and 336 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,11 @@ I've verified the colour combinations using the tool above but if I've missed an
## Changelog

| Date | Version | Change |
|:------------|:--------|:---------------------------------------------------------------------------------------------------|
| :---------- | :------ | :------------------------------------------------------------------------------------------------- |
| 27 Dec 2020 | 2.4.0 | High-contrast theme support: convert to new JSON format, add rainbow JSON, add UI theme |
| 26 Apr 2020 | 2.3.0 | Added high-contrast WCAG 2.0 AA compliant syntax colour theme |
| 26 Apr 2020 | 2.2.0 | Now with even **more** rainbow JSON! 36 levels. 🌈🌈🌈 |
| 26 Apr 2020 | 2.1.0 | Add support for 11 levels of nested rainbow JSON! 🌈 |
| 26 Apr 2020 | 2.2.0 | Now with even **more** rainbow JSON! 36 levels. 🌈🌈🌈 |
| 26 Apr 2020 | 2.1.0 | Add support for 11 levels of nested rainbow JSON! 🌈 |
| 25 Apr 2020 | 2.0.0 | Add support for Markdown and Git. Sidebar and status bar design. |
| 5 Mar 2017 | 0.2.0 | Added the Tinacious Design Light syntax theme. Increased contrast of current line & selected text. |
| 10 Oct 2016 | 0.1.0 | Initial release |
76 changes: 76 additions & 0 deletions code-samples/nested-json.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"one-uno-un": {
"two-dos-deux": {
"three-tres-trois": {
"four-cuatro-quatre": {
"five-cinco-cinq": {
"six-seis-six": {
"seven-siete-sept": {
"eight-ocho-huit": {
"nine-nueve-neuf": {
"ten-diez-dix": {
"one-uno-un": {
"two-dos-deux": {
"three-tres-trois": {
"four-cuatro-quatre": {
"five-cinco-cinq": {
"six-seis-six": {
"seven-siete-sept": {
"eight-ocho-huit": {
"nine-nueve-neuf": {
"ten-diez-dix": {
"one-uno-un": {
"two-dos-deux": {
"three-tres-trois": {
"four-cuatro-quatre": {
"five-cinco-cinq": {
"six-seis-six": {
"seven-siete-sept": {
"eight-ocho-huit": {
"nine-nueve-neuf": {
"ten-diez-dix": {
"one-uno-un": {
"two-dos-deux": {
"three-tres-trois": {
"four-cuatro-quatre": {
"five-cinco-cinq": {
"six-seis-six": {
"end-rainbow-support": true,
"should-find-new-job-if-more-needed": true
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "theme-tinaciousdesign",
"displayName": "Tinacious Design theme",
"description": "🌈 A dark theme and a light theme with fun colours.",
"version": "2.3.1",
"version": "2.4.0",
"publisher": "tinaciousdesign",
"repository": "https://github.com/tinacious/vscode-tinacious-design-syntax",
"scripts": {
Expand All @@ -22,7 +22,8 @@
"a11y"
],
"contributes": {
"themes": [{
"themes": [
{
"label": "Tinacious Design",
"uiTheme": "vs-dark",
"path": "/themes/Tinacious Design-color-theme.json"
Expand All @@ -43,9 +44,9 @@
"path": "./themes/Tinacious-Design-Light.tmTheme"
},
{
"label": "Tinacious Design (High Contrast) (2016)",
"label": "Tinacious Design (High Contrast)",
"uiTheme": "vs-dark",
"path": "./themes/Tinacious-Design-High-Contrast.tmTheme"
"path": "/themes/Tinacious-Design-High-Contrast-color-theme.json"
}
]
},
Expand Down
2 changes: 2 additions & 0 deletions scripts/generate_json_support.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ const colours = [
"#00CECA", // turquoise/blue
"#00BFFF", // blue
"#8590EC", // indigo
// "#B267E6", // indigo, a11y
"#FE3698", // pink
"#FF7086", // orangey pink
"#ffb070", // orange
"#FCCC66", // yellow
"#BBCE65", // yellowy green
"#59D065", // green
// "#00D364", // green, a11y
];

// Supporting 4 rainbows. If you need more than that, I'm sorry on so many levels. 🙃
Expand Down
Loading

0 comments on commit b0d6f3e

Please sign in to comment.