Skip to content

Releases: Quansight-Labs/accessible-pygments

v0.0.5

10 May 11:22
7e61876
Compare
Choose a tag to compare

What's Changed

  • MAINT - Add pre-commits and update docs by @trallard in #26
  • ENH - Move to hatch for dev/build by @trallard in #27
  • MAINT - Delete docs/all_themes.pptx by @gabalafou in #40
  • [DOC] Remove conda instructions from contributing by @gabalafou in #39
  • ENH - Remove build artifacts from the repo by @gabalafou in #41
  • ENH - Automate theme READMEs by @gabalafou in #42
  • MAINT - Miscellaneous updates by @trallard in #46
  • BUG - Ensure no local version by @trallard in #48
  • ENH - Automate theme README screenshots by @gabalafou in #43
  • MAINT - Update pre-commit hooks by @trallard in #45
  • BUG - Fix contrast failures for high contrast light theme by @gabalafou in #33
  • ENH -Fix broken theme URLs in README, typo in demo html by @meli-lewis in #53
  • ENH - Update code to not get images from placeholder.com by @Carreau in #51
  • ENH -Reflect that rgb colors are in 0-1 and floats. by @Carreau in #52
  • ENH - Small refactor of color utils for readibility and type checkability by @gabalafou in #55
  • ENH - Rename hex to float function by @gabalafou in #57
  • ENH - Set a11y-light default background to #f2f2f2 (light gray) by @gabalafou in #56
  • ENH - Update release action by @trallard in #60

New Contributors

Full Changelog: v0.0.4...v0.0.5

Accessible Pygments Release v0.0.4

22 Mar 22:51
Compare
Choose a tag to compare

Release v0.0.4

Minor version of accessible pygments,

  • Exclude "test" package from being installed.

Just install our package via pip or conda,

pip install accessible-pygments
conda install -c conda-forge accessible-pygments

** Please note that the version in conda-forge may be available after a few days of the release

For use, just use the names of our themes and play around in your application with them!

from pygments.formatters import HtmlFormatter
HtmlFormatter(style='a11y-light').style
<class 'accessible-pygments.A11yLight'>

Accessible Pygments Release v0.0.3

09 Feb 23:58
Compare
Choose a tag to compare

Release v0.0.3

The new version of accessible pygments,

  • Fixes the highlighting colors of all our themes!
  • Adds a more in-depth documentation of each theme in the main readme
  • Improves our demo page - now you can also preview how the theme works with the highlighted colors!

Just install our package via pip or conda,

pip install accessible-pygments
conda install -c conda-forge accessible-pygments

** Please note that the version in conda-forge may be available after a few days of the release

For use, just use the names of our themes and play around in your application with them!

from pygments.formatters import HtmlFormatter
HtmlFormatter(style='a11y-light').style
<class 'accessible-pygments.A11yLight'>

Accessible Pygments Release v0.0.2

08 Nov 17:27
Compare
Choose a tag to compare

Release v0.0.2

The new version of accessible pygments brings with it more themes for you to use!

  • github-light
  • github-dark
  • github-light-colorblind
  • github-dark-colorblind
  • github-light-high-contrast
  • github-dark-high-contrast
  • gotthard-light
  • gotthard-dark
  • blinds-light
  • blinds-dark
  • greative

Just install our package via pip or conda,

pip install accessible-pygments
conda install -c conda-forge accessible-pygments

** Please note that the version in conda-forge may be available after a few days of the release

For use, just use the names of our themes and play around in your application with them!

from pygments.formatters import HtmlFormatter
HtmlFormatter(style='a11y-light').style
<class 'accessible-pygments.A11yLight'>

Accessible Pygments Release v0.0.1

06 Oct 21:21
Compare
Choose a tag to compare

Release v0.0.1

This is our first release of accessible pygments themes 🎉

For now, we have five themes available that are ready to use:

  • a11y-light
  • a11y-dark
  • a11y-high-contrast-light
  • a11y-high-contrast-dark
  • pitaya-smoothie

Just install our package via pip or conda,

pip install accessible-pygments

conda install -c conda-forge accessible-pygments

** Please note that the version in conda-forge may be available after a few days of the release

For use, just use the names of our themes and play around in your application with them!

from pygments.formatters import HtmlFormatter
HtmlFormatter(style='a11y-light').style
<class 'accessible-pygments.A11yLight'>