-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed dark mode images on colors page
Signed-off-by: lakshya <[email protected]>
- Loading branch information
Showing
20 changed files
with
890 additions
and
46 deletions.
There are no files selected for viewing
63 changes: 63 additions & 0 deletions
63
src/assets/images/app/projects/sistent/bg-colors-table-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions
33
src/assets/images/app/projects/sistent/border-colors-table-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
107 changes: 107 additions & 0 deletions
107
src/assets/images/app/projects/sistent/brand-colors-table-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions
36
src/assets/images/app/projects/sistent/context-visuals-6-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
138 changes: 138 additions & 0 deletions
138
src/assets/images/app/projects/sistent/function-colors-table-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
98 changes: 98 additions & 0 deletions
98
src/assets/images/app/projects/sistent/greyscale-colors-table-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
72 changes: 72 additions & 0 deletions
72
src/assets/images/app/projects/sistent/text-colors-table-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions
12
src/assets/images/app/projects/sistent/tonal-palettes-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
124 changes: 124 additions & 0 deletions
124
src/assets/images/app/projects/sistent/tonal-palettes-full-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import React from "react"; | ||
|
||
export const SpacingCode = () => { | ||
return <div>SpacingCode</div>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import React from "react"; | ||
|
||
export const SpacingGuidance = () => { | ||
return <div>SpacingGuidance</div>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import React, { useState } from "react"; | ||
import { Container } from "../../../../../reusecore/Layout"; | ||
import SistentWrapper from "../../sistent.style"; | ||
import TOC from "../../../../../components/SistentNavigation"; | ||
import IntraPage from "../../../../../components/handbook-navigation/intra-page"; | ||
import Button from "../../../../../reusecore/Button"; | ||
import SistentPagination from "../../../../../components/SistentNavigation/pagination"; | ||
import { SpacingOverview } from "./overview"; | ||
import { SpacingGuidance } from "./guidance"; | ||
import { SpacingCode } from "./code"; | ||
|
||
const contents = [{ id: 0, link: "#About Sistent", text: "About Sistent" }]; | ||
|
||
const SistentIdentitySpacing = () => { | ||
const [activeTab, setActiveTab] = useState("overview"); | ||
return ( | ||
<SistentWrapper> | ||
<div className="page-header-section"> | ||
<h1>Spacing</h1> | ||
</div> | ||
<TOC /> | ||
<div className="page-section"> | ||
<Container> | ||
<div className="content"> | ||
<a id="Identity"> | ||
<h2>Spacing</h2> | ||
</a> | ||
<p> | ||
Space is the unseen component in designed solutions that enables | ||
clear, concise, and consistent arrangement of interface elements | ||
across a screen. | ||
</p> | ||
<div className="filterBtns"> | ||
<Button | ||
className={activeTab == "overview" ? "active" : ""} | ||
onClick={() => setActiveTab("overview")} | ||
title="Overview" | ||
/> | ||
<Button | ||
className={activeTab == "guidance" ? "active" : ""} | ||
onClick={() => setActiveTab("guidance")} | ||
title="Guidance" | ||
/> | ||
<Button | ||
className={activeTab == "code" ? "active" : ""} | ||
onClick={() => setActiveTab("code")} | ||
title="Code" | ||
/> | ||
</div> | ||
{activeTab === "overview" && <SpacingOverview />} | ||
{activeTab === "guidance" && <SpacingGuidance />} | ||
{activeTab === "code" && <SpacingCode />} | ||
<SistentPagination /> | ||
</div> | ||
</Container> | ||
<IntraPage contents={contents} /> | ||
</div> | ||
</SistentWrapper> | ||
); | ||
}; | ||
|
||
export default SistentIdentitySpacing; |
70 changes: 70 additions & 0 deletions
70
src/sections/Projects/Sistent/identity/spacing/overview.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import React from "react"; | ||
|
||
export const SpacingOverview = () => { | ||
return ( | ||
<div className="main-content"> | ||
<p> | ||
Spacing is a foundational consideration in any design endeavor. From | ||
intra component spacing to space between elements in a given layout, | ||
intentional application of spacing across a digital experience elevates | ||
its usability, improves its (or the) experience, and eventually | ||
generates much needed website traffic which is a primary goal for most | ||
digital solutions. | ||
</p> | ||
<a id="The Basics"> | ||
<h2>The Basics</h2> | ||
</a> | ||
<p> | ||
A few concepts can be handy to keep in mind as we consider spacing and | ||
its application throughout designs to ensure clarity and proper | ||
understanding. | ||
</p> | ||
<h3>Inset</h3> | ||
<p> | ||
Inset describes the value of padding for any container in the interface. | ||
The description of a container can range from full page layouts, to page | ||
sections, all the way down to card containers and even icon frames. | ||
Inset accounts for the values of both horizontal and vertical padding. | ||
The horizontal and vertical paddings don’t need to have the same value, | ||
however, it is recommended that the values for the horizontal padding | ||
are equivalent. This principle applies to the values for the vertical | ||
paddings as well. | ||
</p> | ||
<h3>Stack</h3> | ||
<p> | ||
Stack in spacing is used to describe the space between vertically | ||
arranged content in a digital interface. Since most digital content is | ||
read from top to bottom, It is only right that they are arranged in such | ||
a way that accurately conveys hierarchy, relationship and spatial | ||
harmony. | ||
</p> | ||
<h3>Inline</h3> | ||
<p> | ||
This is the horizontal space consideration given to elements that are | ||
being arranged in an interface. It can be the space between text input, | ||
horizontally stacked elements like buttons and so on. | ||
</p> | ||
<a id="Scaling"> | ||
<h2>Scaling</h2> | ||
</a> | ||
<p> | ||
To properly implement spacing, a set of values have to be generated | ||
using a scale just like was done in the case of typography. This avails | ||
us with a fixed range of values that provide the much needed flexibility | ||
required by interfaces to be consistent. This range could be derived | ||
from a base spacing value which follows a principle like a linear scale | ||
from the base value, multiples of the base value, the golden ratio, or a | ||
modular scale. | ||
</p> | ||
<p> | ||
Most digital screen resolutions are divisible by 16 which is a multiple | ||
of eight and so, this makes it a good reason to utilize eight as our | ||
base spacing value. Our scale, therefore, has been derived from | ||
multiples of eight with a half and quarter step of eight included in the | ||
scale to account for much smaller space considerations, for example, | ||
icon padding. The half and quarter steps have values of two and four | ||
respectively. | ||
</p> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters