mirror of
https://github.com/penpot/penpot.git
synced 2025-02-15 03:28:25 -05:00
🐛 Restored rules color
This commit is contained in:
parent
da2a3b6883
commit
9ac4239c11
3 changed files with 6 additions and 2 deletions
|
@ -55,6 +55,7 @@
|
||||||
- Fix issues when updating selrect in paths [Taiga #2366](https://tree.taiga.io/project/penpot/issue/2366)
|
- Fix issues when updating selrect in paths [Taiga #2366](https://tree.taiga.io/project/penpot/issue/2366)
|
||||||
- Fix scroll jumps in handoff mode [Taiga #2383](https://tree.taiga.io/project/penpot/issue/2383)
|
- Fix scroll jumps in handoff mode [Taiga #2383](https://tree.taiga.io/project/penpot/issue/2383)
|
||||||
- Fix handoff text with opacity [Taiga #2384](https://tree.taiga.io/project/penpot/issue/2384)
|
- Fix handoff text with opacity [Taiga #2384](https://tree.taiga.io/project/penpot/issue/2384)
|
||||||
|
- Restored rules color [Taiga #2460](https://tree.taiga.io/project/penpot/issue/2460)
|
||||||
|
|
||||||
### :arrow_up: Deps updates
|
### :arrow_up: Deps updates
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
(def canvas "#E8E9EA")
|
(def canvas "#E8E9EA")
|
||||||
(def default-layout "#DE4762")
|
(def default-layout "#DE4762")
|
||||||
(def gray-20 "#B1B2B5")
|
(def gray-20 "#B1B2B5")
|
||||||
|
(def gray-30 "#7B7D85")
|
||||||
(def info "#59B9E2")
|
(def info "#59B9E2")
|
||||||
(def test "#fabada")
|
(def test "#fabada")
|
||||||
(def white "#FFFFFF")
|
(def white "#FFFFFF")
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
(ns app.main.ui.workspace.rules
|
(ns app.main.ui.workspace.rules
|
||||||
(:require
|
(:require
|
||||||
|
[app.common.colors :as colors]
|
||||||
[app.common.math :as mth]
|
[app.common.math :as mth]
|
||||||
[app.util.object :as obj]
|
[app.util.object :as obj]
|
||||||
[rumext.alpha :as mf]))
|
[rumext.alpha :as mf]))
|
||||||
|
@ -47,8 +48,8 @@
|
||||||
(.translate dctx 0 txfm))
|
(.translate dctx 0 txfm))
|
||||||
|
|
||||||
(obj/set! dctx "font" "12px worksans")
|
(obj/set! dctx "font" "12px worksans")
|
||||||
(obj/set! dctx "fillStyle" "var(--color-gray-30)")
|
(obj/set! dctx "fillStyle" colors/gray-30)
|
||||||
(obj/set! dctx "strokeStyle" "var(--color-gray-30)")
|
(obj/set! dctx "strokeStyle" colors/gray-30)
|
||||||
(obj/set! dctx "textAlign" "center")
|
(obj/set! dctx "textAlign" "center")
|
||||||
|
|
||||||
(loop [i minv]
|
(loop [i minv]
|
||||||
|
|
Loading…
Add table
Reference in a new issue