Module thcon::app::atom[][src]

Expand description

Switches between Atom UI and editor themes in all windows and tabs.

Usage: All Platforms

Install thcon-atom with apm install thcon. In thcon.toml, define a list of themes to apply in dark mode and light mode. These can be copy-pasted from the core.themes property in your config.cson. You can easily get Atom looking right in dark mode, copy those themes into thcon.toml, then repeat for light mode.

[atom]
dark = [ "one-dark-ui", "one-dark-syntax" ]
light = [ "one-light-ui", "one-light-syntax" ]

thcon.toml Schema

Section: atom

KeyTypeDescriptionDefault
disabledbooleantrue to disable theming of this app, otherwise falsefalse
darkarray of stringsThe themes to apply in dark mode, as shown in config.cson["one-dark-ui", "one-dark-syntax"]
lightarray of stringsThe themes to apply in dark mode, as shown in config.cson["one-light-ui", "one-light-syntax"]

Structs