@@ -178,7 +178,7 @@
(action-fn! action true)))}
[:li.item-colors
- (for [it ["yellow", "blue", "green", "red", "purple"]]
+ (for [it ["yellow", "red", "green", "blue", "purple"]]
[:a {:key it :data-color it :data-action it} it])]
@@ -56,13 +56,13 @@
(defonce icon-size (if (mobile-util/native-platform?) 26 20))
(def block-background-colors
- ["gray"
+ ["yellow"
"red"
- "yellow"
+ "pink"
"green"
"blue"
"purple"
- "pink"])
+ "gray"])
(rum/defc ls-textarea
< rum/reactive
@@ -4,13 +4,13 @@ import type { TLEventMap } from './TLEventMap'
import type { TLHandle } from './TLHandle'
export enum Color {
- Gray = 'gray',
- Red = 'red',
Yellow = 'yellow',
+ Red = 'red',
+ Pink = 'pink',
Green = 'green',
Blue = 'blue',
Purple = 'purple',
- Pink = 'pink',
+ Gray = 'gray',
Default = '',
}