Skip to content

Commit

Permalink
fixes colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Specy committed Sep 18, 2024
1 parent f418677 commit 664fe02
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 14 deletions.
19 changes: 15 additions & 4 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#553b6a">
<meta name="theme-color" content="#1f1a27">
<meta name="author" content="Specy">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-n8MVd4RsNIU0tAv4ct0nTaAbDJwPJzDEaqSD1odI+WdtXRGWt2kTvGFasHpSy3SV" crossorigin="anonymous">
%sveltekit.head%
Expand Down
6 changes: 3 additions & 3 deletions src/components/dotlr/TreeRenderer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@
fill: var(--primary-text);
}
:global(.tree_link){
stroke: var(--tertiary-10);
stroke-width: 2px;
stroke: var(--tertiary);
stroke-width: 3px;
fill: transparent;
}
:global(.tree_terminal){
fill: var(--accent);
}
:global(.tree_non_terminal){
fill: var(--primary-15);
fill: var(--primary-5);
}
</style>
2 changes: 1 addition & 1 deletion src/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ a {
}

a:hover {
color: var(--accent)
color: var(--accent-5)
}

input:disabled {
Expand Down
6 changes: 1 addition & 5 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@
<li>Editor with text completion and error reporting, useful error messages and traces</li>
<li>Typescript code runner to use the parser you created directly in the app!</li>
</ul>
<div style="text-shadow: 2px 2px 10px black;">
</div>
<ul style="max-width: 30rem;">
</ul>
<div class="buttons">
<ButtonLink
color="accent"
Expand Down Expand Up @@ -104,7 +100,7 @@
Install WebApp
</Button>
{:else}
<div style="height: 2.4rem">
<div style="height: 2.6rem">

</div>
{/if}
Expand Down

0 comments on commit 664fe02

Please sign in to comment.