Skip to content

Commit

Permalink
Remove color comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonzalo Stoll committed Oct 23, 2023
1 parent 5703b46 commit b811a68
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions packages/prism-react-renderer/src/themes/gruvboxMaterialDark.ts
Expand Up @@ -25,25 +25,25 @@ const theme: PrismTheme = {
{
types: ["property-access"],
style: {
color: "#7daea3", // blue
color: "#7daea3",
},
},
{
types: ["tag"],
style: {
color: "#e78a4e", // orange
color: "#e78a4e",
},
},
{
types: ["attr-name", "char", "url", "regex"],
style: {
color: "#a9b665", // green
color: "#a9b665",
},
},
{
types: ["attr-value", "string"],
style: {
color: "#89b482", // aqua
color: "#89b482",
},
},
{
Expand All @@ -65,13 +65,13 @@ const theme: PrismTheme = {
"deleted",
],
style: {
color: "#ea6962", // red
color: "#ea6962",
},
},
{
types: ["entity", "number", "symbol"],
style: {
color: "#d3869b", // purple
color: "#d3869b",
},
},
],
Expand Down
14 changes: 7 additions & 7 deletions packages/prism-react-renderer/src/themes/gruvboxMaterialLight.ts
Expand Up @@ -21,7 +21,7 @@ const theme: PrismTheme = {
"deleted",
],
style: {
color: "#af2528", // red
color: "#af2528",
},
},
{
Expand All @@ -34,31 +34,31 @@ const theme: PrismTheme = {
"builtin",
],
style: {
color: "#b4730e", // yellow
color: "#b4730e",
},
},
{
types: ["string", "attr-value"],
style: {
color: "#477a5b", // aqua
color: "#477a5b",
},
},
{
types: ["property-access"],
style: {
color: "#266b79", // blue
color: "#266b79",
},
},
{
types: ["function", "attr-name", "char", "url"],
style: {
color: "#72761e", // green
color: "#72761e",
},
},
{
types: ["tag"],
style: {
color: "#b94c07", // orange
color: "#b94c07",
},
},
{
Expand All @@ -70,7 +70,7 @@ const theme: PrismTheme = {
{
types: ["entity", "number", "symbol"],
style: {
color: "#924f79", // purple
color: "#924f79",
},
},
],
Expand Down

0 comments on commit b811a68

Please sign in to comment.