Skip to content

Commit

Permalink
chore(extras): auto-generate extras
Browse files Browse the repository at this point in the history
  • Loading branch information
astronvimbot committed Jul 15, 2024
1 parent a6c8fe1 commit 6ded3d5
Show file tree
Hide file tree
Showing 4 changed files with 204 additions and 0 deletions.
51 changes: 51 additions & 0 deletions extras/prism/astrodark.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
module.exports = {
plain: {
color: "#ADB0BB",
backgroundColor: "#1A1D23",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#FF838B",
},
},
{
types: ["function", "symbol", "tag"],
style: {
color: "#5EB7FF",
},
},
{
types: ["punctuation", "variable"],
style: {
color: "#ADB0BB",
},
},
{
types: ["string", "char", "selector"],
style: {
color: "#87C05F",
},
},
{
types: ["keyword", "operator"],
style: {
color: "#DD97F1",
},
},
{
types: ["constant", "boolean", "attr-name"],
style: {
color: "#DFAB25",
},
},
{
types: ["comment"],
style: {
color: "#696C76",
fontStyle: "italic",
},
},
],
};
51 changes: 51 additions & 0 deletions extras/prism/astrojupiter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
module.exports = {
plain: {
color: "#815654",
backgroundColor: "#FEEEEE",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#A13F37",
},
},
{
types: ["function", "symbol", "tag"],
style: {
color: "#006E89",
},
},
{
types: ["punctuation", "variable"],
style: {
color: "#815654",
},
},
{
types: ["string", "char", "selector"],
style: {
color: "#467118",
},
},
{
types: ["keyword", "operator"],
style: {
color: "#90437A",
},
},
{
types: ["constant", "boolean", "attr-name"],
style: {
color: "#805C00",
},
},
{
types: ["comment"],
style: {
color: "#937C7A",
fontStyle: "italic",
},
},
],
};
51 changes: 51 additions & 0 deletions extras/prism/astrolight.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
module.exports = {
plain: {
color: "#4F4F4F",
backgroundColor: "#F7F8F8",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#990000",
},
},
{
types: ["function", "symbol", "tag"],
style: {
color: "#00508A",
},
},
{
types: ["punctuation", "variable"],
style: {
color: "#4F4F4F",
},
},
{
types: ["string", "char", "selector"],
style: {
color: "#345E00",
},
},
{
types: ["keyword", "operator"],
style: {
color: "#9E007C",
},
},
{
types: ["constant", "boolean", "attr-name"],
style: {
color: "#7300B8",
},
},
{
types: ["comment"],
style: {
color: "#8B9297",
fontStyle: "italic",
},
},
],
};
51 changes: 51 additions & 0 deletions extras/prism/astromars.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
module.exports = {
plain: {
color: "#A5B2BC",
backgroundColor: "#1E1517",
},
styles: [
{
types: ["prolog", "builtin"],
style: {
color: "#DF8489",
},
},
{
types: ["function", "symbol", "tag"],
style: {
color: "#4FA9C6",
},
},
{
types: ["punctuation", "variable"],
style: {
color: "#A5B2BC",
},
},
{
types: ["string", "char", "selector"],
style: {
color: "#84A860",
},
},
{
types: ["keyword", "operator"],
style: {
color: "#CD87BA",
},
},
{
types: ["constant", "boolean", "attr-name"],
style: {
color: "#C3963D",
},
},
{
types: ["comment"],
style: {
color: "#63646A",
fontStyle: "italic",
},
},
],
};

0 comments on commit 6ded3d5

Please sign in to comment.