af7ffaa279
* Server-side syntax hilighting for all code This PR does a few things: * Remove all traces of highlight.js * Use chroma library to provide fast syntax hilighting directly on the server * Provide syntax hilighting for diffs * Re-style both unified and split diffs views * Add custom syntax hilighting styling for both regular and arc-green Fixes #7729 Fixes #10157 Fixes #11825 Fixes #7728 Fixes #3872 Fixes #3682 And perhaps gets closer to #9553 * fix line marker * fix repo search * Fix single line select * properly load settings * npm uninstall highlight.js * review suggestion * code review * forgot to call function * fix test * Apply suggestions from code review suggestions from @silverwind thanks Co-authored-by: silverwind <me@silverwind.io> * code review * copy/paste error * Use const for highlight size limit * Update web_src/less/_repository.less Co-authored-by: Lauris BH <lauris@nix.lv> * update size limit to 1MB and other styling tweaks * fix highlighting for certain diff sections * fix test * add worker back as suggested Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Lauris BH <lauris@nix.lv>
46 lines
1.7 KiB
Go
Vendored
46 lines
1.7 KiB
Go
Vendored
package styles
|
|
|
|
import (
|
|
"github.com/alecthomas/chroma"
|
|
)
|
|
|
|
// SolarizedDark style.
|
|
var SolarizedDark = Register(chroma.MustNewStyle("solarized-dark", chroma.StyleEntries{
|
|
chroma.Keyword: "#719e07",
|
|
chroma.KeywordConstant: "#CB4B16",
|
|
chroma.KeywordDeclaration: "#268BD2",
|
|
chroma.KeywordReserved: "#268BD2",
|
|
chroma.KeywordType: "#DC322F",
|
|
chroma.NameAttribute: "#93A1A1",
|
|
chroma.NameBuiltin: "#B58900",
|
|
chroma.NameBuiltinPseudo: "#268BD2",
|
|
chroma.NameClass: "#268BD2",
|
|
chroma.NameConstant: "#CB4B16",
|
|
chroma.NameDecorator: "#268BD2",
|
|
chroma.NameEntity: "#CB4B16",
|
|
chroma.NameException: "#CB4B16",
|
|
chroma.NameFunction: "#268BD2",
|
|
chroma.NameTag: "#268BD2",
|
|
chroma.NameVariable: "#268BD2",
|
|
chroma.LiteralString: "#2AA198",
|
|
chroma.LiteralStringBacktick: "#586E75",
|
|
chroma.LiteralStringChar: "#2AA198",
|
|
chroma.LiteralStringDoc: "#93A1A1",
|
|
chroma.LiteralStringEscape: "#CB4B16",
|
|
chroma.LiteralStringHeredoc: "#93A1A1",
|
|
chroma.LiteralStringRegex: "#DC322F",
|
|
chroma.LiteralNumber: "#2AA198",
|
|
chroma.Operator: "#719e07",
|
|
chroma.Comment: "#586E75",
|
|
chroma.CommentPreproc: "#719e07",
|
|
chroma.CommentSpecial: "#719e07",
|
|
chroma.GenericDeleted: "#DC322F",
|
|
chroma.GenericEmph: "italic",
|
|
chroma.GenericError: "#DC322F bold",
|
|
chroma.GenericHeading: "#CB4B16",
|
|
chroma.GenericInserted: "#719e07",
|
|
chroma.GenericStrong: "bold",
|
|
chroma.GenericSubheading: "#268BD2",
|
|
chroma.Background: "#93A1A1 bg:#002B36",
|
|
chroma.Other: "#CB4B16",
|
|
}))
|