diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-25 20:34:52 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-25 20:35:24 -0400 |
commit | 20764e31eefcc077341a7dab649e37dcd361a8d0 (patch) | |
tree | 46c3cd9529d66b3b34fc7cbbeced0744b8f7d16a /.themes/classic/sass | |
parent | d10ba20d140ca0a4a0eda1900d66f6c76bbfa883 (diff) | |
download | my_new_personal_website-20764e31eefcc077341a7dab649e37dcd361a8d0.tar.xz my_new_personal_website-20764e31eefcc077341a7dab649e37dcd361a8d0.zip |
updated syntax highlighting support for perl and objective c in code_block and include_code plugins
Diffstat (limited to '.themes/classic/sass')
-rw-r--r-- | .themes/classic/sass/partials/_syntax.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.themes/classic/sass/partials/_syntax.scss b/.themes/classic/sass/partials/_syntax.scss index bb350ed7..4ccd63d8 100644 --- a/.themes/classic/sass/partials/_syntax.scss +++ b/.themes/classic/sass/partials/_syntax.scss @@ -126,9 +126,10 @@ p code { .n { color: $blue !important; } .na { color: $blue !important; } /* Name.Attribute */ .nb { color: $green !important; } /* Name.Builtin */ - //.nc { color: #445588; font-weight: bold } /* Name.Class */ + .nc { color: $magenta !important;} /* Name.Class */ .no { color: $yellow !important; } /* Name.Constant */ //.ni { color: #800080 } /* Name.Entity */ + .nl { color: $green !important; } .ne { color: $blue !important; font-weight: bold !important; } /* Name.Exception */ .nf { color: $blue !important; font-weight: bold !important; } /* Name.Function */ .nn { color: $yellow !important; } /* Name.Namespace */ @@ -215,3 +216,4 @@ figure[role=code] { padding-left: 3em; } + |