fix: update text colors to grey (#11805)

* fix: update text colors to grey

* fix: update text color
This commit is contained in:
karanh37 2023-05-30 14:52:50 +05:30 committed by GitHub
parent e72cd217d8
commit 712d97e2cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 6 deletions

View File

@ -47,7 +47,7 @@ export const EntityHeader = ({
serviceName,
}: Props) => {
return (
<div className="w-full font-medium">
<div className="w-full">
<div
className={classNames(
'tw-text-link tw-text-base glossary-breadcrumb',

View File

@ -50,7 +50,7 @@ const EntityHeaderTitle = ({
{/* If we do not have displayName name only be shown in the bold from the below code */}
{!isEmpty(displayName) ? (
<Typography.Text
className="m-b-0 d-block text-grey-muted text-md font-medium"
className="m-b-0 d-block text-grey-muted text-md"
data-testid="entity-header-name">
{stringToHTML(name)}
</Typography.Text>
@ -58,7 +58,7 @@ const EntityHeaderTitle = ({
{/* It will render displayName fallback to name */}
<Typography.Text
className="m-b-0 d-block entity-header-display-name text-lg font-bold"
className="m-b-0 d-block entity-header-display-name text-lg font-semibold"
data-testid="entity-header-display-name"
ellipsis={{ tooltip: true }}>
{stringToHTML(displayName || name)}

View File

@ -15,7 +15,6 @@ import '@fontsource/poppins'; // Font 400
import '@fontsource/poppins/300.css'; // Font 300
import '@fontsource/poppins/500.css'; // Font 500
import '@fontsource/poppins/600.css'; // Font 600
import '@fontsource/poppins/700.css'; // Font 700
import '@fontsource/source-code-pro'; // Font 400
import 'react-awesome-query-builder/lib/css/styles.css';
import 'reactflow/dist/base.css';

View File

@ -22,8 +22,8 @@
@failed-color: #cb2431;
@aborted-color: #efae2f;
@info-color: #2196f3;
@text-color: #000;
@text-color-secondary: #000;
@text-color: #292929;
@text-color-secondary: #292929;
@text-color-tertiary: #00000080;
@text-grey-muted: #6b7280d9;
@font-size-base: 14px;