Skip to content

chore(site): remove paperLight background value #10857

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Refactor template editor
  • Loading branch information
BrunoQuaresma committed Nov 24, 2023
commit 06563ef56b0ddaed818156d7b5c6993b4c58802e
2 changes: 1 addition & 1 deletion site/src/components/Resources/AgentRowPreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export const AgentRowPreview: FC<AgentRowPreviewProps> = ({
const styles = {
agentRow: (theme) => ({
padding: "16px 32px",
backgroundColor: theme.palette.background.paperLight,
backgroundColor: theme.palette.background.paper,
fontSize: 16,
position: "relative",

Expand Down
4 changes: 2 additions & 2 deletions site/src/components/SyntaxHighlighter/coderTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ export const coderTheme = (theme: Theme): editor.IStandaloneThemeData => ({
],
colors: {
"editor.foreground": theme.palette.text.primary,
"editor.background": theme.palette.background.paper,
"editor.background": theme.palette.background.default,
"editor.selectionBackground": theme.palette.action.hover,
"editor.lineHighlightBackground": theme.palette.background.paperLight,
"editor.lineHighlightBackground": theme.palette.background.paper,

"editorCursor.foreground": "#f8f8f0",
"editorWhitespace.foreground": "#3B3A32",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,6 @@ const styles = {
alignItems: "center",
justifyContent: "space-between",
height: topbarHeight,
background: theme.palette.background.paper,
}),
topbarSides: {
display: "flex",
Expand All @@ -486,7 +485,6 @@ const styles = {
},
sidebar: (theme) => ({
minWidth: 256,
backgroundColor: theme.palette.background.paper,
borderRight: `1px solid ${theme.palette.divider}`,
}),
sidebarTitle: (theme) => ({
Expand Down