Changes based on feedback

Signed-off-by: Andre Wanlin <awanlin@rapidrtc.com>
This commit is contained in:
Andre Wanlin
2022-03-28 12:44:56 -05:00
committed by Andre Wanlin
parent 1fa7f7448e
commit e1dbedbefc
3 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
---
'@backstage/theme': minor
'@backstage/theme': patch
---
**DEPRECATED**: The `bursts` object from `BackstagePaletteAdditions` has been depreciated and will be removed in a future release
+8
View File
@@ -39,6 +39,10 @@ export const lightTheme = createTheme({
},
bursts: {
fontColor: '#FEFEFE',
slackChannelText: '#ddd',
backgroundColor: {
default: '#7C3699',
},
gradient: {
linear: 'linear-gradient(-137deg, #4BB8A5 0%, #187656 100%)',
},
@@ -112,6 +116,10 @@ export const darkTheme = createTheme({
},
bursts: {
fontColor: '#FEFEFE',
slackChannelText: '#ddd',
backgroundColor: {
default: '#7C3699',
},
gradient: {
linear: 'linear-gradient(-137deg, #4BB8A5 0%, #187656 100%)',
},
+4
View File
@@ -68,6 +68,10 @@ export type BackstagePaletteAdditions = {
*/
bursts: {
fontColor: string;
slackChannelText: string;
backgroundColor: {
default: string;
};
gradient: {
linear: string;
};