npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@phoenix-plugin-registry/themes

v2.0.6

Published

CodeMirror and custom themes in Brackets

Downloads

5

Readme

Brackets-Themes

Set CodeMirror and Custom themes in Brackets.

Features

  • Automatic loading of CodeMirror's themes shipped with Brackets.
  • Enjoy a variety of custom themes created by other users like yourself! For custom themes 101 primer, please read below.
  • Import themes from http://studiostyl.es/.
  • Configure font size and font type.
  • Disable scrollbars defined in themes. Good if you just want to use the default scrollbars.
  • Support for LESS files!
  • Auto reload themes upon saving changes made to theme files.
  • Configure custom folders to load themes from. This is good if you want to have a folder to hold your custom themes that you want to persist after Brackets/Themes updates. Read this issue if you want to see why sometimes you need this feature.
  • Doctype specific styling. See below for an example.
  • Auto detection of dark themes so that Brackets can do its dark theme specific styling.

Screenshot

Visual Studio Visual Studio

Monokai Dark Soda Monokai Dark Soda theme

Dracula Dracula

Solarized Obsidian

Delkos Delkos

Obsidian Obsidian

Zamiere Delkos

Doctype styling

Themes will add a doctype to the codemirror instance so that you can easily craft css rules to style different document types.

.CodeMirror[doctype=javascript] .cm-property {
    color: brown !important;
}

.CodeMirror[doctype=less] .cm-property,
.CodeMirror[doctype=css]  .cm-property {
    color: red !important;
}

Custom themes 101 guide

Custom themes are codemirror's themes, so you will need to be familiar with codemirror's theme guidelines. I provide a set of steps to get you started below, but for more details please navigate to http://codemirror.net/doc/manual.html and search for "theme". Codemirror's themes are css files. Important requirement is that the file name has to match your css class definition. E.g. If your theme file is called "default", then your primary css class name needs to be "default". Codemirror's guidelines require that the actual css class name starts with ".cm-s-", so your fully qualified css class name will be ".cm-s-default". To get you started, you could use the already existing custom theme "default.css". Let's do the following.

  • Open the custom theme directory. Navigate to your themes manager directory (extensions directory/themes) and you will find custom themes in the "theme" directory. Brackets provides a quick way of accessing your extensions directory... Help > Show Extensions Folder.
  • Copy and paste the file "default.css" and rename it to "my-theme.css".
  • Open "my-theme.css" and replace "default" with "my-theme", which should end up looking like ".cm-s-my-theme". You will also have a second class ".CodeMirror", just leave it there and the net result will look like ".cm-s-my-theme.CodeMirror".
  • In "my-theme.css", change "background-color: #F8F8F8;" to "backgound-color: red;".
  • Relaunch brackets, open a JavaScript file and you should see the document with a red background. For details on what can be customized, please navigate to http://codemirror.net/doc/manual.html and search for "Customized Styling". As you will notice, the documentation isn't exhautive but they suggest you use "codemirror.css" as a reference. Give it a try, it is pretty straight forward. If you have a cool theme you created and want to share, please send it my way and I will gladly add it to the custom themes.

FAQ

  • Why disabling/enabling the scrollbars don't always take effect?

    • This due to the fact that CodeMirror builds "fake" scrollbars that only get created when the document is loaded. So toggling the scrollbars with the document open might not take effect as expected. To get around this behavior, reopen the document or restart Brackets.
  • How can I use Themes with Edge Code?

    • You can install using this URL https://github.com/MiguelCastillo/Brackets-Themes/archive/v1.0.4.zip

How to

  • Set a theme? Find the Themes menu and make a selection. Themes Menu

Credit

Corey Gwin: Monokai Dark Soda Kulcsár Kázmér: Zamiere Diego Alvarez: Aquaman Felipe K. de Mello: Dracula Fernando Hurtado: Nando Jordan Hess: Pixie John Hamm: Hammsidian Christopher Kelly (scriptmunkee) for additions to reset.css

Contact me

If you have any issues or want to just drop in a line, you can use my personal email at [email protected]

License

Licensed under MIT