farout.nvim/extras/prism/tokyonight_storm.js

76 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-01-18 14:06:08 +00:00
module.exports = {
plain: {
color: "#c0caf5",
backgroundColor: "#24283b",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#f7768e",
},
},
{
types: ["function"],
style: {
color: "#7aa2f7",
},
},
{
types: ["symbol"],
style: {
color: "#2ac3de",
},
},
{
types: ["punctuation"],
style: {
color: "#bb9af7",
},
},
{
types: ["string", "char", "tag", "selector"],
style: {
color: "#9ece6a",
},
},
{
types: ["keyword"],
style: {
2023-01-23 19:51:53 +00:00
color: "#9d7cd8",
2023-01-18 14:06:08 +00:00
},
},
{
types: ["operator"],
style: {
color: "#89ddff",
},
},
{
types: ["constant", "boolean"],
style: {
color: "#ff9e64",
},
},
{
types: ["variable"],
style: {
color: "#c0caf5",
},
},
{
types: ["comment"],
style: {
color: "#565f89",
fontStyle: "italic",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(241, 250, 140)",
},
},
],
};