mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
Merge pull request #5095 from penpot/eva-update-ds-components
♻️ Update colors and icons
This commit is contained in:
commit
d7eb86c86d
5 changed files with 9 additions and 6 deletions
3
frontend/resources/images/icons/info.svg
Normal file
3
frontend/resources/images/icons/info.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M8 9V5m0 6h0ZM1.333 8.082a6.667 6.667 0 1 1 13.333-.163 6.667 6.667 0 0 1-13.333.163Zh0Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 220 B |
|
@ -21,8 +21,7 @@ $orange-500: #fe4811;
|
|||
$orange-950: #440806;
|
||||
|
||||
$red-200: #ffcada;
|
||||
$red-500: #ff3277;
|
||||
$red-700: #c80857;
|
||||
$red-400: #c80857;
|
||||
$red-950: #500124;
|
||||
|
||||
$pink-400: #ff6fe0;
|
||||
|
@ -71,7 +70,7 @@ $grayish-red: #bfbfbf;
|
|||
--color-background-success: #{$green-200};
|
||||
--color-accent-warning: #{$orange-500};
|
||||
--color-background-warning: #{$orange-200};
|
||||
--color-accent-error: #{$red-500};
|
||||
--color-accent-error: #{$red-400};
|
||||
--color-background-error: #{$red-200};
|
||||
--color-accent-info: #{$blue-500};
|
||||
--color-background-info: #{$blue-200};
|
||||
|
@ -103,7 +102,7 @@ $grayish-red: #bfbfbf;
|
|||
--color-background-success: #{$green-950};
|
||||
--color-accent-warning: #{$orange-500};
|
||||
--color-background-warning: #{$orange-950};
|
||||
--color-accent-error: #{$red-700};
|
||||
--color-accent-error: #{$red-400};
|
||||
--color-background-error: #{$red-950};
|
||||
--color-accent-info: #{$blue-500};
|
||||
--color-background-info: #{$blue-950};
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
}
|
||||
|
||||
&::selection {
|
||||
background: var(--color-accent-primary-muted);
|
||||
background: var(--color-accent-select);
|
||||
}
|
||||
|
||||
&::placeholder {
|
||||
|
|
|
@ -157,6 +157,7 @@
|
|||
(def ^:icon-id hug-content "hug-content")
|
||||
(def ^:icon-id icon "icon")
|
||||
(def ^:icon-id img "img")
|
||||
(def ^:icon-id info "info")
|
||||
(def ^:icon-id interaction "interaction")
|
||||
(def ^:icon-id join-nodes "join-nodes")
|
||||
(def ^:icon-id external-link "external-link")
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
(def levels (set '("info" "warning" "error" "success")))
|
||||
|
||||
(def ^:private icons-by-level
|
||||
{"info" i/help
|
||||
{"info" i/info
|
||||
"warning" i/msg-neutral
|
||||
"error" i/delete-text
|
||||
"success" i/status-tick})
|
||||
|
|
Loading…
Reference in a new issue