Skip to content

Commit 68577db

Browse files
authored
Update kumquat colors (#18616)
1 parent 5791909 commit 68577db

15 files changed

+17
-19
lines changed

components/dashboard/src/admin/BlockedEmailDomains.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ function BlockedDomainEntry(props: {
170170
},
171171
];
172172
return (
173-
<div className="rounded whitespace-nowrap flex py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gitpod-kumquat-light group">
173+
<div className="rounded whitespace-nowrap flex py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-kumquat-light group">
174174
<div className="flex flex-col w-9/12 truncate">
175175
<span className="mr-3 text-lg text-gray-600 truncate">{props.br.domain}</span>
176176
</div>
@@ -248,7 +248,7 @@ function Details(props: {
248248
return (
249249
<div className="border-gray-200 dark:border-gray-800 -mx-6 px-6 py-4 flex flex-col">
250250
{props.error ? (
251-
<div className="bg-gitpod-kumquat-light rounded-md p-3 text-gitpod-red text-sm mb-2">{props.error}</div>
251+
<div className="bg-kumquat-light rounded-md p-3 text-gitpod-red text-sm mb-2">{props.error}</div>
252252
) : null}
253253
<div>
254254
<h4>Domain (may contain '%' as wild card)</h4>

components/dashboard/src/admin/BlockedRepositories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function BlockedRepositoryEntry(props: { br: BlockedRepository; confirmedDelete:
175175
},
176176
];
177177
return (
178-
<div className="rounded whitespace-nowrap flex py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gitpod-kumquat-light group">
178+
<div className="rounded whitespace-nowrap flex py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-kumquat-light group">
179179
<div className="flex flex-col w-9/12 truncate">
180180
<span className="mr-3 text-lg text-gray-600 truncate">{props.br.urlRegexp}</span>
181181
</div>
@@ -273,7 +273,7 @@ function Details(props: {
273273
return (
274274
<div className="border-gray-200 dark:border-gray-800 -mx-6 px-6 py-4 flex flex-col">
275275
{props.error ? (
276-
<div className="bg-gitpod-kumquat-light rounded-md p-3 text-gitpod-red text-sm mb-2">{props.error}</div>
276+
<div className="bg-kumquat-light rounded-md p-3 text-gitpod-red text-sm mb-2">{props.error}</div>
277277
) : null}
278278
<div>
279279
<h4>Repository URL RegEx</h4>

components/dashboard/src/admin/ProjectsSearch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export function ProjectsSearch() {
140140
to={"/admin/projects/" + p.project.id}
141141
data-analytics='{"button_type":"sidebar_menu"}'
142142
>
143-
<div className="rounded-xl whitespace-nowrap flex py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gitpod-kumquat-light group">
143+
<div className="rounded-xl whitespace-nowrap flex py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-kumquat-light group">
144144
<div className="flex flex-col w-4/12 truncate">
145145
<div className="font-medium text-gray-800 dark:text-gray-100 truncate">{p.project.name}</div>
146146
</div>

components/dashboard/src/admin/TeamsSearch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export function TeamsSearch() {
138138
to={"/admin/orgs/" + props.team.id}
139139
data-analytics='{"button_type":"sidebar_menu"}'
140140
>
141-
<div className="rounded-xl whitespace-nowrap flex py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gitpod-kumquat-light group">
141+
<div className="rounded-xl whitespace-nowrap flex py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-kumquat-light group">
142142
<div className="flex flex-col w-7/12 truncate">
143143
<div className="font-medium text-gray-800 dark:text-gray-100 truncate max-w-sm">
144144
{props.team.name}

components/dashboard/src/admin/UserSearch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function UserEntry(p: { user: User }) {
132132
const email = User.getPrimaryEmail(p.user) || "---";
133133
return (
134134
<Link key={p.user.id} to={"/admin/users/" + p.user.id} data-analytics='{"button_type":"sidebar_menu"}'>
135-
<div className="rounded-xl whitespace-nowrap flex space-x-2 py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gitpod-kumquat-light group">
135+
<div className="rounded-xl whitespace-nowrap flex space-x-2 py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-kumquat-light group">
136136
<div className="pr-3 self-center w-1/12">
137137
<img className="rounded-full" src={p.user.avatarUrl} alt={p.user.fullName || p.user.name} />
138138
</div>

components/dashboard/src/admin/WorkspacesSearch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ function WorkspaceEntry(p: { ws: WorkspaceAndInstance }) {
172172
to={"/admin/workspaces/" + p.ws.workspaceId}
173173
data-analytics='{"button_type":"sidebar_menu"}'
174174
>
175-
<div className="rounded-xl whitespace-nowrap flex py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gitpod-kumquat-light group">
175+
<div className="rounded-xl whitespace-nowrap flex py-6 px-6 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-kumquat-light group">
176176
<div className="pr-3 self-center w-8">
177177
<WorkspaceStatusIndicator instance={WorkspaceAndInstance.toInstance(p.ws)} />
178178
</div>

components/dashboard/src/components/ItemsList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function Item(props: { children?: React.ReactNode; className?: string; he
1414
// cursor-pointer hover:bg-gray-100 dark:hover:bg-gray-700
1515
const solidClassName = props.solid ? "bg-gray-100 dark:bg-gray-800" : "hover:bg-gray-100 dark:hover:bg-gray-800";
1616
const headerClassName = "text-sm text-gray-400 border-t border-b border-gray-200 dark:border-gray-800";
17-
const notHeaderClassName = "rounded-xl focus:bg-gitpod-kumquat-light " + solidClassName;
17+
const notHeaderClassName = "rounded-xl focus:bg-kumquat-light " + solidClassName;
1818
return (
1919
<div
2020
className={`flex flex-grow flex-row w-full p-3 justify-between transition ease-in-out ${

components/dashboard/src/projects/Projects.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export default function ProjectsPage() {
128128
{!searchFilter && (
129129
<div
130130
key="new-project"
131-
className="h-52 border-dashed border-2 border-gray-100 dark:border-gray-800 hover:bg-gray-100 dark:hover:bg-gray-800 rounded-xl focus:bg-gitpod-kumquat-light transition ease-in-out group"
131+
className="h-52 border-dashed border-2 border-gray-100 dark:border-gray-800 hover:bg-gray-100 dark:hover:bg-gray-800 rounded-xl focus:bg-kumquat-light transition ease-in-out group"
132132
>
133133
<Link to={projectsPathNew} data-analytics='{"button_type":"card"}'>
134134
<div className="flex h-full">

components/dashboard/src/projects/new-project/NewProjectRepoList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const NewProjectRepoList: FC<Props> = ({ filteredRepos, noReposAvailable,
2323
{filteredRepos.map((r, index) => (
2424
<div
2525
key={`repo-${index}-${r.account}-${r.name}`}
26-
className="flex p-3 rounded-xl hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gitpod-kumquat-light transition ease-in-out group"
26+
className="flex p-3 rounded-xl hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-kumquat-light transition ease-in-out group"
2727
title={r.cloneUrl}
2828
>
2929
<div className="flex-grow">

components/dashboard/src/start/StartWorkspace.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ export default class StartWorkspace extends React.Component<StartWorkspaceProps,
639639
statusMessage = (
640640
<div>
641641
<div className="flex space-x-3 items-center text-left rounded-xl m-auto px-4 h-16 w-72 mt-4 bg-gray-100 dark:bg-gray-800">
642-
<div className="rounded-full w-3 h-3 text-sm bg-gitpod-kumquat">&nbsp;</div>
642+
<div className="rounded-full w-3 h-3 text-sm bg-kumquat-ripe">&nbsp;</div>
643643
<div>
644644
<p className="text-gray-700 dark:text-gray-200 font-semibold w-56 truncate">
645645
{this.state.workspaceInstance.workspaceId}

components/dashboard/src/teams/sso/OIDCClientListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export const OIDCClientListItem: FC<Props> = ({ clientConfig, hasActiveConfig, o
8585
(clientConfig.active
8686
? "bg-green-500"
8787
: clientConfig.verified
88-
? "bg-gitpod-kumquat"
88+
? "bg-kumquat-ripe"
8989
: "bg-gray-400")
9090
}
9191
>

components/dashboard/src/user-settings/EnvironmentVariables.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function AddEnvVarModal(p: EnvVarModalProps) {
5555
<ModalHeader>{isNew ? "New" : "Edit"} Variable</ModalHeader>
5656
<ModalBody>
5757
{error ? (
58-
<div className="bg-gitpod-kumquat-light rounded-md p-3 text-gitpod-red text-sm mb-2">{error}</div>
58+
<div className="bg-kumquat-light rounded-md p-3 text-gitpod-red text-sm mb-2">{error}</div>
5959
) : null}
6060
<div>
6161
<h4>Name</h4>

components/dashboard/src/user-settings/TokenEntry.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function TokenEntry(props: TokenEntryProps) {
3535
};
3636

3737
return (
38-
<div className="rounded-xl whitespace-nowrap flex space-x-2 py-4 px-4 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-gitpod-kumquat-light group">
38+
<div className="rounded-xl whitespace-nowrap flex space-x-2 py-4 px-4 w-full justify-between hover:bg-gray-100 dark:hover:bg-gray-800 focus:bg-kumquat-light group">
3939
<div className="flex items-center pr-3 w-4/12">
4040
<span className="truncate">{props.token.name || ""}</span>
4141
</div>

components/dashboard/src/workspaces/RenameWorkspaceModal.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,7 @@ export const RenameWorkspaceModal: FunctionComponent<Props> = ({ workspace, onCl
4848
<ModalHeader>Rename Workspace Description</ModalHeader>
4949
<ModalBody>
5050
{errorMessage.length > 0 ? (
51-
<div className="bg-gitpod-kumquat-light rounded-md p-3 text-gitpod-red text-sm mb-2">
52-
{errorMessage}
53-
</div>
51+
<div className="bg-kumquat-light rounded-md p-3 text-gitpod-red text-sm mb-2">{errorMessage}</div>
5452
) : null}
5553
<input
5654
autoFocus

components/dashboard/src/workspaces/WorkspaceStatusIndicator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function WorkspaceStatusIndicator({ instance }: { instance?: WorkspaceIns
3333
break;
3434
}
3535
default: {
36-
stateClassName += " bg-gitpod-kumquat animate-pulse";
36+
stateClassName += " bg-kumquat-ripe animate-pulse";
3737
break;
3838
}
3939
}

0 commit comments

Comments
 (0)