farout.nvim/extras/prism/tokyonight_moon.js

77 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-01-18 14:06:08 +00:00
module.exports = {
plain: {
color: "#c8d3f5",
backgroundColor: "#222436",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#ff757f",
},
},
{
types: ["function"],
style: {
color: "#82aaff",
},
},
{
types: ["symbol"],
style: {
color: "#65bcff",
},
},
{
types: ["punctuation"],
style: {
color: "#c099ff",
},
},
{
types: ["string", "char", "tag", "selector"],
style: {
color: "#c3e88d",
},
},
{
types: ["keyword"],
style: {
color: "#c099ff",
fontStyle: "italic",
},
},
{
types: ["operator"],
style: {
color: "#89ddff",
},
},
{
types: ["constant", "boolean"],
style: {
color: "#ff966c",
},
},
{
types: ["variable"],
style: {
color: "#c8d3f5",
},
},
{
types: ["comment"],
style: {
color: "#636da6",
fontStyle: "italic",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(241, 250, 140)",
},
},
],
};