Skip to content

Instantly share code, notes, and snippets.

@douglaskarr
Last active May 14, 2019 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save douglaskarr/77b4b1971cc221c6b53ba1fc69e05cc0 to your computer and use it in GitHub Desktop.
Save douglaskarr/77b4b1971cc221c6b53ba1fc69e05cc0 to your computer and use it in GitHub Desktop.
Dark OSX Theme for Espresso Editor
/*
@theme Dark OSX
@override-placeholders ruby, css, html, php
@author Douglas Karr - Based on the Railcasts theme
Colors
- #fff text
- #1f1f1f background
- #00b300 Green (Comments)
- rgba(251, 199, 111, 1.00) Yellow
- rgba(102, 217, 239, 1.00) Blue
- rgba(164, 194, 97, 1.00) Red
*/
@base
{
color: #fff;
background-color: #1F1F1F;
insertion-point-color: #fff;
selection-background-color: #333;
}
tag,
source,
sourcecode,
css
{ spell-check: disabled; }
processing-instruction { color:#aeaeae; }
/* Yellow */
selector,
php builtin_function name
{ color: rgba(251, 199, 111, 1.00); }
/* Blue */
property-name,
tag,
variable
{ color: rgba(102, 217, 239, 1.00); }
/* Green */
property-value
{ color: rgba(0, 204, 0, 1.00); }
/* Red */
*[text='<?php'],
*[text='?>'],
php php.begin *,
php keyword.modifier
{ color: rgba(251, 90, 90, 1.00); }
/* Magento */
keyword.important,
control
{ color: rgba(249, 38, 114, 1.00); }
/* Grey */
comment,
tag.doctype
{ color: #00b300; }
/* Light Grey */
php balanced
{ color: #999;}
/* Off-white */
string
{ color: rgba(192, 192, 192, 1.00); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment