Skip to content

Commit

Permalink
Merge pull request #75 from hyvor/color-update
Browse files Browse the repository at this point in the history
orange color updated #69
  • Loading branch information
supun-io authored Jan 2, 2024
2 parents 4d4a6c2 + 774f5c5 commit 262425c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/lib/components/FormControl/Validation.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
<div class="icon">

{#if state === 'error'}
<IconExclamationTriangleFill />
<IconExclamationTriangleFill style="color:var(--red)" />
{:else if state === 'warning'}
<IconInfoCircleFill />
<IconInfoCircleFill style="color:var(--orange)" />
{:else}
<IconCheckCircleFill />
<IconCheckCircleFill style="color:var(--green)" />
{/if}

</div>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
--blue-light: #dae5ff;

--orange-dark: #8b5b04;
--orange: #f1c40f;
--orange: #e2b500;
--orange-light: #efe3b4;

--gray-light: #ddd;
Expand Down

0 comments on commit 262425c

Please sign in to comment.