You can easily tweak the look and feel of any website’s interface to your preference by installing a Chromium browser extension that overrides its CSS styling.
I did this for the Google AI Studio web app, and it works great (see attached screenshot). The extension I used is called “Stylus”:
Here are the CSS styling rules to modify some of the CSS styles on the Google AI Studio web app; adjust them to your own liking:
.page-header {
/* page header */
background-color: #a8a29e;
}
.container {
/* left container header */
background-color: #d6d3d1;
}
.console-right-panel.visible {
/* right container header */
background-color: #d6d3d1;
}
.tree-view-container {
/* file explorer */
background-color: #f0eee6;
}
ms-cmark-node blockquote,
ms-cmark-node div,
ms-cmark-node dl,
ms-cmark-node dt,
ms-cmark-node td,
ms-cmark-node th,
ms-cmark-node li,
ms-cmark-node p,
ms-cmark-node section {
/* left container - chat body text */
font-family: sans-serif;
color: black;
font-size: 14px;
line-height: 17.5px;
}
.turn-header {
/* user & assistant header */
background-color: #d6d3d1;
font-family: sans-serif;
font-size: 14px;
font-weight: 600;
line-height: 22px;
color: black;
gap: 10px;
margin-bottom: 10px;
margin-top: 16px;
margin-left: 0px;
}
.turn.input p {
/* user prompt text */
font-size: 15px !important;
font-weight: 300;
color: #2563eb !important;
}
.inline-code[_ngcontent-ng-c4139270029] {
background: #f0eee6;
color: #8a2424;
}
.suggestions-container .suggestions-header {
/* suggestions title */
background-color: #f0eee6;
}
ms-autoscroll-container {
/* left column header background */
background-color: #faf9f5;
}
blockquote {
/* inline blockquote */
background-color: #ffe4e6;
margin-left: 24px;
padding: 10px;
}
.bottom-container {
/* bottom container */
background-color: #f0eee6;
margin-bottom: 8px;
}
.container {
/* assistant thinking container */
background-color: lavender;
border: 0px solid;
border-radius: 8px;
}
h1 {
/* header title */
font-size: 14px;
font-weight: 600;
color: white;
}
h2 {
/* subtitles in assistant answers */
font-size: 14px;
font-weight: 600;
color: #8a2424;
}
h3 {
/* subtitles in assistant answers */
font-size: 14px;
font-weight: 600;
color: #8a2424;
}
.generation-table {
/* table of modified files */
background-color: #fff1f2;
border-radius: 8px;
border: 1px solid var(--color-v3-outline-var);
overflow: hidden;
padding: 4px;
}
