Last active
December 27, 2015 19:09
-
-
Save naneau/7375005 to your computer and use it in GitHub Desktop.
Pygments highlighting in a properly formatted LESS file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Pygments highlighting | |
| .highlight { | |
| font-size: .9em; | |
| // Comment | |
| .c { | |
| color: #586E75; | |
| } | |
| // Comment.Multiline | |
| .cm { | |
| color: #586E75; | |
| } | |
| // Comment.Preproc | |
| .cp { | |
| color: #859900; | |
| } | |
| // Comment.Single | |
| .c1 { | |
| color: #586E75; | |
| } | |
| // Comment.Special | |
| .cs { | |
| color: #859900; | |
| } | |
| // Error | |
| .err { | |
| color: #93A1A1; | |
| } | |
| // Generic | |
| .g { | |
| color: #93A1A1; | |
| } | |
| // Keyword | |
| .k { | |
| color: #859900; | |
| } | |
| // Literal | |
| .l { | |
| color: #93A1A1; | |
| } | |
| // Name | |
| .n { | |
| color: #93A1A1; | |
| } | |
| // Operator | |
| .o { | |
| color: #859900; | |
| } | |
| // Other | |
| .x { | |
| color: #CB4B16; | |
| } | |
| // Punctuation | |
| .p { | |
| color: #93A1A1; | |
| } | |
| // Generic.Deleted | |
| .gd { | |
| color: #2AA198; | |
| } | |
| // Generic.Emph | |
| .ge { | |
| color: #93A1A1; | |
| font-style: italic; | |
| } | |
| // Generic.Error | |
| .gr { | |
| color: #DC322F; | |
| } | |
| // Generic.Heading | |
| .gh { | |
| color: #CB4B16; | |
| } | |
| // Generic.Inserted | |
| .gi { | |
| color: #859900; | |
| } | |
| // Generic.Output | |
| .go { | |
| color: #93A1A1; | |
| } | |
| // Generic.Prompt | |
| .gp { | |
| color: #93A1A1; | |
| } | |
| // Generic.Strong | |
| .gs { | |
| color: #93A1A1; | |
| font-weight: bold; | |
| } | |
| // Generic.Subheading | |
| .gu { | |
| color: #CB4B16; | |
| } | |
| // Generic.Traceback | |
| .gt { | |
| color: #93A1A1; | |
| } | |
| // Keyword.Constant | |
| .kc { | |
| color: #CB4B16; | |
| } | |
| // Keyword.Declaration | |
| .kd { | |
| color: #268BD2; | |
| } | |
| // Keyword.Namespace | |
| .kn { | |
| color: #859900; | |
| } | |
| // Keyword.Pseudo | |
| .kp { | |
| color: #859900; | |
| } | |
| // Keyword.Reserved | |
| .kr { | |
| color: #268BD2; | |
| } | |
| // Keyword.Type | |
| .kt { | |
| color: #DC322F; | |
| } | |
| // Literal.Date | |
| .ld { | |
| color: #93A1A1; | |
| } | |
| // Literal.Number | |
| .m { | |
| color: #2AA198; | |
| } | |
| // Literal.String | |
| .s { | |
| color: #2AA198; | |
| } | |
| // Name.Attribute | |
| .na { | |
| color: #93A1A1; | |
| } | |
| // Name.Builtin | |
| .nb { | |
| color: #B58900; | |
| } | |
| // Name.Class | |
| .nc { | |
| color: #268BD2; | |
| } | |
| // Name.Constant | |
| .no { | |
| color: #CB4B16; | |
| } | |
| // Name.Decorator | |
| .nd { | |
| color: #268BD2; | |
| } | |
| // Name.Entity | |
| .ni { | |
| color: #CB4B16; | |
| } | |
| // Name.Exception | |
| .ne { | |
| color: #CB4B16; | |
| } | |
| // Name.Function | |
| .nf { | |
| color: #268BD2; | |
| } | |
| // Name.Label | |
| .nl { | |
| color: #93A1A1; | |
| } | |
| // Name.Namespace | |
| .nn { | |
| color: #93A1A1; | |
| } | |
| // Name.Other | |
| .nx { | |
| color: #93A1A1; | |
| } | |
| // Name.Property | |
| .py { | |
| color: #93A1A1; | |
| } | |
| // Name.Tag | |
| .nt { | |
| color: #268BD2; | |
| } | |
| // Name.Variable | |
| .nv { | |
| color: #268BD2; | |
| } | |
| // Operator.Word | |
| .ow { | |
| color: #859900; | |
| } | |
| // Text.Whitespace | |
| .w { | |
| color: #93A1A1; | |
| } | |
| // Literal.Number.Float | |
| .mf { | |
| color: #2AA198; | |
| } | |
| // Literal.Number.Hex | |
| .mh { | |
| color: #2AA198; | |
| } | |
| // Literal.Number.Integer | |
| .mi { | |
| color: #2AA198; | |
| } | |
| // Literal.Number.Oct | |
| .mo { | |
| color: #2AA198; | |
| } | |
| // Literal.String.Backtick | |
| .sb { | |
| color: #586E75; | |
| } | |
| // Literal.String.Char | |
| .sc { | |
| color: #2AA198; | |
| } | |
| // Literal.String.Doc | |
| .sd { | |
| color: #93A1A1; | |
| } | |
| // Literal.String.Double | |
| .s2 { | |
| color: #2AA198; | |
| } | |
| // Literal.String.Escape | |
| .se { | |
| color: #CB4B16; | |
| } | |
| // Literal.String.Heredoc | |
| .sh { | |
| color: #93A1A1; | |
| } | |
| // Literal.String.Interpol | |
| .si { | |
| color: #2AA198; | |
| } | |
| // Literal.String.Other | |
| .sx { | |
| color: #2AA198; | |
| } | |
| // Literal.String.Regex | |
| .sr { | |
| color: #DC322F; | |
| } | |
| // Literal.String.Single | |
| .s1 { | |
| color: #2AA198; | |
| } | |
| // Literal.String.Symbol | |
| .ss { | |
| color: #2AA198; | |
| } | |
| // Name.Builtin.Pseudo | |
| .bp { | |
| color: #268BD2; | |
| } | |
| // Name.Variable.Class | |
| .vc { | |
| color: #268BD2; | |
| } | |
| // Name.Variable.Global | |
| .vg { | |
| color: #268BD2; | |
| } | |
| // Name.Variable.Instance | |
| .vi { | |
| color: #268BD2; | |
| } | |
| // Literal.Number.Integer.Long | |
| .il { | |
| color: #2AA198; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment