Files
farout.nvim/extras/prism/faroutday.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: "#6c6252",
backgroundColor: "#e1e2e7",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#db5234",
},
},
{
types: ["function"],
style: {
color: "#c77544",
},
},
{
types: ["symbol"],
style: {
color: "#db5234",
},
},
{
types: ["punctuation"],
style: {
color: "#c37f87",
},
},
{
types: ["string", "char", "tag", "selector"],
style: {
color: "#715e4b",
},
},
{
types: ["keyword"],
style: {
color: "#876060",
},
},
{
types: ["operator"],
style: {
color: "#91654c",
},
},
{
types: ["constant", "boolean"],
style: {
color: "#b15c00",
},
},
{
types: ["variable"],
style: {
color: "#6c6252",
},
},
{
types: ["comment"],
style: {
color: "#d79687",
fontStyle: "italic",
},
},
{
types: ["attr-name"],
style: {
color: "rgb(241, 250, 140)",
},
},
],
};