Skip to content

Instantly share code, notes, and snippets.

@davidbarsky
Created June 12, 2013 22:10
Show Gist options
  • Save davidbarsky/5769582 to your computer and use it in GitHub Desktop.
Save davidbarsky/5769582 to your computer and use it in GitHub Desktop.
A slightly modified Tomorrow Night TextMate theme. The single change is a darker, more saturated navy grey. This is the original [Tomorrow theme repo](https://github.com/chriskempson/tomorrow-theme).
{ settings = (
{ settings = {
foreground = '#C5C8C6';
background = '#1C1B27';
caret = '#AEAFAD';
invisibles = '#4B4E55';
selection = '#373B41';
lineHighlight = '#282A2E';
};
},
{ name = 'Comment';
scope = 'comment';
settings = { foreground = '#969896'; };
},
{ name = 'Foreground';
scope = 'keyword.operator.class, constant.other, source.php.embedded.line';
settings = {
fontStyle = '';
foreground = '#CED1CF';
};
},
{ name = 'Variable, String Link, Regular Expression, Tag Name';
scope = 'variable, support.other.variable, string.other.link, string.regexp, entity.name.tag, entity.other.attribute-name, meta.tag, declaration.tag';
settings = { foreground = '#CC6666'; };
},
{ name = 'Number, Constant, Function Argument, Tag Attribute, Embedded';
scope = 'constant.numeric, constant.language, support.constant, constant.character, variable.parameter, punctuation.section.embedded, keyword.other.unit';
settings = {
fontStyle = '';
foreground = '#DE935F';
};
},
{ name = 'Class, Support';
scope = 'entity.name.class, entity.name.type.class, support.type, support.class';
settings = {
fontStyle = '';
foreground = '#F0C674';
};
},
{ name = 'String, Symbols, Inherited Class, Markup Heading';
scope = 'string, constant.other.symbol, entity.other.inherited-class, markup.heading';
settings = {
fontStyle = '';
foreground = '#B5BD68';
};
},
{ name = 'Operator, Misc';
scope = 'keyword.operator, constant.other.color';
settings = { foreground = '#8ABEB7'; };
},
{ name = 'Function, Special Method, Block Level';
scope = 'entity.name.function, meta.function-call, support.function, keyword.other.special-method, meta.block-level';
settings = {
fontStyle = '';
foreground = '#81A2BE';
};
},
{ name = 'Keyword, Storage';
scope = 'keyword, storage, storage.type, entity.name.tag.css';
settings = {
fontStyle = '';
foreground = '#B294BB';
};
},
{ name = 'Invalid';
scope = 'invalid';
settings = {
fontStyle = '';
foreground = '#CED2CF';
background = '#DF5F5F';
};
},
{ name = 'Separator';
scope = 'meta.separator';
settings = {
foreground = '#CED2CF';
background = '#82A3BF';
};
},
{ name = 'Deprecated';
scope = 'invalid.deprecated';
settings = {
fontStyle = '';
foreground = '#CED2CF';
background = '#B798BF';
};
},
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment