cryptpad/www/common/themes.js

60 lines
1.8 KiB
JavaScript
Raw Normal View History

2016-06-29 09:51:53 +00:00
define(function () {
return [
"3024-day 3024-day.css",
"3024-night 3024-night.css",
"abcdef abcdef.css",
"ambiance-mobile ambiance-mobile.css",
"ambiance ambiance.css",
"ansuz ansuz.css",
2016-06-29 09:51:53 +00:00
"base16-dark base16-dark.css",
"base16-light base16-light.css",
"bespin bespin.css",
"blackboard blackboard.css",
"cobalt cobalt.css",
"colorforth colorforth.css",
2021-02-10 09:38:02 +00:00
"cryptpad-dark cryptpad-dark.css",
2016-06-29 09:51:53 +00:00
"default default",
"dracula dracula.css",
"eclipse eclipse.css",
"elegant elegant.css",
"erlang-dark erlang-dark.css",
"hopscotch hopscotch.css",
"icecoder icecoder.css",
"isotope isotope.css",
"lesser-dark lesser-dark.css",
"liquibyte liquibyte.css",
2017-04-14 13:35:02 +00:00
"LOL lol.css",
2016-06-29 09:51:53 +00:00
"material material.css",
"mbo mbo.css",
"mdn-like mdn-like.css",
"midnight midnight.css",
"monokai monokai.css",
"neat neat.css",
"neo neo.css",
"night night.css",
"paraiso-dark paraiso-dark.css",
"paraiso-light paraiso-light.css",
"pastel-on-dark pastel-on-dark.css",
"railscasts railscasts.css",
"rubyblue rubyblue.css",
"seti seti.css",
"solarized solarized.css",
"the-matrix the-matrix.css",
"tomorrow-night-bright tomorrow-night-bright.css",
"tomorrow-night-eighties tomorrow-night-eighties.css",
"ttcn ttcn.css",
"twilight twilight.css",
"vibrant-ink vibrant-ink.css",
"xq-dark xq-dark.css",
"xq-light xq-light.css",
"yeti yeti.css",
"zenburn zenburn.css"
].map(function (line) {
var kv = line.split(/\s/);
return {
name: kv[0].replace(/_/g, ' '),
theme: kv[1],
};
});
});