Skip to content

Commit df5eebd

Browse files
feat(theme): Update content accent color
1 parent cef97a9 commit df5eebd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

static/app/utils/theme/theme.chonk.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ function generateChonkTokens(colorScheme: typeof lightColors) {
309309
content: {
310310
primary: colorScheme.gray800,
311311
muted: colorScheme.gray500,
312-
accent: colorScheme.blue500,
312+
accent: colorScheme.blue300,
313313
promotion: colorScheme.pink500,
314314
danger: colorScheme.red400,
315315
warning: colorScheme.yellow500,

static/app/utils/theme/theme.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ const generateTokens = (colors: Colors) => ({
233233
content: {
234234
primary: colors.gray400, // theme.textColor
235235
muted: colors.gray300, // theme.subText
236-
accent: colors.blue400, // new
236+
accent: colors.purple400, // new
237237
promotion: colors.pink400, // new
238238
danger: colors.red400, // theme.errorText
239239
warning: colors.yellow400, // theme.warningText

0 commit comments

Comments
 (0)