-
-
Notifications
You must be signed in to change notification settings - Fork 24
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
Design Concept: Brand Design & Styling #51
Comments
arcticicestudio
added a commit
that referenced
this issue
Dec 2, 2018
This commit implements global and normalization CSS styles using "styled-components" `css` API. They extend "modern-normalize" and define, next to the browser normalization, styles for the available global themes. In order to use fonts in "Nord Docs" style & themes (implemented in GH-54) the basic properties and values have been added and integrated into these base styles. To inject global styles, styled-components v4 `createglobalstyle` (1) API has been used to create a `<GlobalStyle>` component that injects theme styles and "styled-modern-normalize" (2) globally. References: (1) https://www.styled-components.com/docs/api#createglobalstyle (2): https://github.com/arcticicestudio/styled-modern-normalize Associated epics: GH-51, GH-2 GH-53
arcticicestudio
added a commit
that referenced
this issue
Dec 2, 2018
To provide the global theme (1), the `ThemeProvider` (2) component has been implemented into the `Root` core container component (3). The global theme, placed in `src/styles/themes` is passed to the provider to make the theme globally available. References: (1) https://www.styled-components.com/docs/advanced#theming (2) https://www.styled-components.com/docs/api#themeprovider (3) #36 Associated epics: GH-51 GH-53
arcticicestudio
added a commit
that referenced
this issue
Dec 4, 2018
To persist the current active theme mode when changing the route (which unmounts the `Root` component and therefore resets the state), the value will be written to the browser's session storage (1). The storage type has been preferred over the local storage (2) since this would persist the active theme mode even when the user closes the tab, but the desired behavior is to optimize the site for the "bright snow flurry" aura theme mode. To simplify the read- and write handling as well as prevent possible errors due to wrong storage keys, two utility functions have been implemented: - `readSessionCache(key : string)` - Reads the value of the given key from the session storage (if available). - `writeSessionCache(key : string, value : any)` - Writes the given key-value pair to the session storage (if available). References: (1) https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage (2) https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage Associated epic: GH-51 GH-57
arcticicestudio
added a commit
that referenced
this issue
Dec 4, 2018
The `Root` component has been changed from a SFC to a class component to store the currently active state and handle the theme mode toggle logic through a function. It also migrated the currently used simple "styled-component" theme (1) (provided through the `<ThemeProvider` component) to the styled-theming theme (2) that provides the initially implemented theme (GH-53). References: (1) https://www.styled-components.com/docs/advanced#theming (2) https://github.com/styled-components/styled-theming Associated epic: GH-51 GH-57
This was referenced Dec 4, 2018
Merged
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This epic documents the design concept for the brand design & styling of Nord Docs.
UI Branding
The UI branding will be based and build on Nord's style ideas that tries to achieve a simple, uncluttered and clear design. It follows the approach of minimal and flat designed elements with an elegant and non-disturbing charisma.
All elements will adhere to a global site theme for a fluid transition between elements and a uniform appearance.
The main global theme will represent Nord's “bright_snow_flurry” aura that represents a light style with bright elements while “dark night frost” represents the darker aesthetic impression of Nord that is initially used for syntax and UI port projects.
Many fantastic design inspiration sources like Dribbble, Uplabs and awesome resources like Refactoring UI are part of Nord Docs the design and development process.
All implementation details and requirements are documented and tracked in the corresponding issues:
-
Styling
All styles will be implemented with the fantastic and one of the most popular CSS-in-JS libraries styled-components. It alows to use the power of JavaScript within CSS which was previously only possible via CSS pre-processors like Sass or LessCSS. It comes with builtin support to provide themes, the polished utility library to simplify the CSS styling and many more features.
Listing all of the great features is out-of-scope of this document. The well-written and really extensive documentation contains all information to get started and guides users through features and setups with tutorials.
All implementation details and requirements are documented and tracked in the corresponding issues:
The text was updated successfully, but these errors were encountered: