{{{ "title": "Creating a Theme" }}} # Creating a Theme ## Overview * Explain the difference between ui themes and syntax themes ## Getting Started * What do I need to install? * Atom - to edit text * Git - to track and distribute your themes * What do I need to know? * CSS/LESS - as that's what themes are written in * Devtools - so you can find the selector you're looking for. * Is there an example I can start from? * Yes, you can clone https://github.com/atom/solarized-dark-syntax # Create a minimal syntax theme ```bash cd ~/.atom/packages mkdir my-theme cd my-theme git init mkdir stylesheets apm init --theme cat > index.less < stylesheets/base.less < stylesheets/overrides.less <