First stab at converting to farout palette

Also renamed all/most instances of tokyonight to farout
This commit is contained in:
2023-12-01 15:30:50 -05:00
parent f247ee700b
commit 1752319cc5
130 changed files with 18963 additions and 301 deletions

75
extras/prism/faroutday.js Normal file
View File

@@ -0,0 +1,75 @@
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)",
},
},
],
};