frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(facet): semantic text placeholder colour

serenity 5ee5d17f af46d18d

+3 -1
+1 -1
src/components/Chat/index.tsx
··· 177 177 value={inputText} 178 178 onChangeText={setInputText} 179 179 placeholder={`Message #${record.channel.name}`} 180 - placeholderTextColor={semantic.border} 180 + placeholderTextColor={semantic.textPlaceholder} 181 181 onSubmitEditing={handleSend} 182 182 // eslint-disable-next-line @typescript-eslint/no-deprecated -- can't get it working with the new prop. 183 183 blurOnSubmit={false}
+1
src/lib/facet/src/palette.ts
··· 25 25 textSecondary: HexCode; 26 26 textTertiary: HexCode; 27 27 textInverse: HexCode; 28 + textPlaceholder: HexCode; 28 29 29 30 positive: HexCode; 30 31 positiveLight?: HexCode;
+1
src/lib/facet/src/variants.ts
··· 90 90 textSecondary: DEFAULT_DARK_PALETTE.subtext1, 91 91 textTertiary: DEFAULT_DARK_PALETTE.subtext0, 92 92 textInverse: DEFAULT_DARK_PALETTE.crust, 93 + textPlaceholder: DEFAULT_DARK_PALETTE.overlay1, 93 94 positive: DEFAULT_DARK_PALETTE.emerald, 94 95 negative: DEFAULT_DARK_PALETTE.ruby, 95 96 success: DEFAULT_DARK_PALETTE.emerald,