farout.nvim/extras/prism/tokyonight_day.js
2023-01-18 15:06:08 +01:00

77 lines
1.2 KiB
JavaScript

module.exports = {
plain: {
color: "#3760bf",
backgroundColor: "#e1e2e7",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#f52a65",
},
},
{
types: ["function"],
style: {
color: "#2e7de9",
},
},
{
types: ["symbol"],
style: {
color: "#188092",
},
},
{
types: ["punctuation"],
style: {
color: "#9854f1",
},
},
{
types: ["string", "char", "tag", "selector"],
style: {
color: "#587539",
},
},
{
types: ["keyword"],
style: {
color: "#9854f1",
fontStyle: "italic",
},
},
{
types: ["operator"],
style: {
color: "#006a83",
},
},
{
types: ["constant", "boolean"],
style: {
color: "#b15c00",
},
},
{
types: ["variable"],
style: {
color: "#3760bf",
},
},
{
types: ["comment"],
style: {
color: "#848cb5",
fontStyle: "italic",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(241, 250, 140)",
},
},
],
};