Skip to content

Commit

Permalink
feat(style): use astro root vars instead of our hex
Browse files Browse the repository at this point in the history
  • Loading branch information
CompeyDev committed May 29, 2024
1 parent 83b9b1f commit 16d751d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/styles/lua.css
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
span.declaration {
font-size: 19px;
font-family: monospace;
/* color: var(--astro-code-token-punctuation) */
}

div.declaration {
font-size: 0;
/* background-color: #23262f; */
border-radius: 2%;
padding: 1%;
}

.method {
color: #b0d86f;
color: var(--astro-code-token-function);
}

.class {
color: #ffcb8b;
color: var(--astro-code-token-constant);
}

.arg {
color: #7bdbca;
color: var(--astro-code-token-parameter);
}

.type {
color: #82aadd;
color: var(--astro-code-token-keyword);
}

0 comments on commit 16d751d

Please sign in to comment.