1
0
Fork 0
mirror of https://github.com/mfocko/blog.git synced 2025-05-06 19:32:58 +02:00
blog/src/prism-themes/solarizedLight.js
Matej Focko 2cf4a3efba
chore: run pre-commit
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-01-03 19:38:35 +01:00

70 lines
1.2 KiB
JavaScript

// @flow
// Converted automatically using ./tools/themeFromVsCode
// import type { PrismTheme } from '../types'
var theme: PrismTheme = {
plain: {
color: "#657b83",
backgroundColor: "#fdf6e3",
},
styles: [
{
types: ["comment"],
style: {
color: "rgb(147, 161, 161)",
fontStyle: "italic",
},
},
{
types: ["string"],
style: {
color: "rgb(42, 161, 152)",
},
},
{
types: ["number"],
style: {
color: "rgb(211, 54, 130)",
},
},
{
types: ["variable", "function", "tag"],
style: {
color: "rgb(38, 139, 210)",
},
},
{
types: ["class-name", "keyword", "char", "constant", "changed"],
style: {
color: "rgb(203, 75, 22)",
},
},
{
types: ["punctuation", "inserted"],
style: {
color: "rgb(133, 153, 0)",
},
},
{
types: ["builtin"],
style: {
color: "rgb(181, 137, 0)",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(147, 161, 161)",
},
},
{
types: ["deleted"],
style: {
color: "rgb(220, 50, 47)",
},
},
],
};
module.exports = theme;