Files
farout.nvim/extras/prism/faroutstorm.js
Tyler Hallada 1752319cc5 First stab at converting to farout palette
Also renamed all/most instances of tokyonight to farout
2023-12-01 15:30:50 -05:00

76 lines
1.2 KiB
JavaScript

module.exports = {
plain: {
color: "#E0CCAE",
backgroundColor: "#0f0908",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#bf472c",
},
},
{
types: ["function"],
style: {
color: "#d47d49",
},
},
{
types: ["symbol"],
style: {
color: "#BF472C",
},
},
{
types: ["punctuation"],
style: {
color: "#8a4b53",
},
},
{
types: ["string", "char", "tag", "selector"],
style: {
color: "#a4896f",
},
},
{
types: ["keyword"],
style: {
color: "#a47a7a",
},
},
{
types: ["operator"],
style: {
color: "#a67458",
},
},
{
types: ["constant", "boolean"],
style: {
color: "#ff9e64",
},
},
{
types: ["variable"],
style: {
color: "#E0CCAE",
},
},
{
types: ["comment"],
style: {
color: "#6B4035",
fontStyle: "italic",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(241, 250, 140)",
},
},
],
};