@pantheon-systems/pds-design-tokens 0.3.0-dev.0 → 0.4.0-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,19 +11,9 @@ Compiled tokens can be found in the `build` directory.
11
11
  PDS Design Tokens are provided in the following formats:
12
12
 
13
13
  - CSS Custom Properties
14
- - `build/css/pds-design-tokens.css`
15
- - `build/css/pds-design-tokens-light-mode.css`
16
- - `build/css/pds-design-tokens-dark-mode.css`
17
14
  - SASS Variables
18
- - `build/scss/_pds-design-tokens.scss`
19
- - `build/scss/_pds-design-tokens-light-mode.scss`
20
- - `build/scss/_pds-design-tokens-dark-mode.scss`
21
15
  - JSON
22
- - `build/json/pds-design-tokens.json`
23
- - `build/json/pds-design-tokens-light-mode.json`
24
- - `build/json/pds-design-tokens-dark-mode.json`
25
16
  - Figma (formatted to sync to Figma styles)
26
- - `build/figma/pds-design-tokens-figma.json`
27
17
 
28
18
  ## Technology Agnostic
29
19
 
@@ -43,4 +33,4 @@ We typically only designate tokens as public when they need to be available to o
43
33
 
44
34
  All global color values are found within the default output files which should be loaded at all times.
45
35
 
46
- Mode-specific (light or dark) color tokens are found within theme-specific CSS and SCSS variable files and are to be used in conjunction with (and loaded after) the default tokens implementation files.
36
+ Mode-specific (light or dark) color and elevation tokens are found within theme-specific files and are to be used in conjunction with (and loaded after) the default tokens implementation files.
@@ -23,4 +23,7 @@
23
23
  --pds-color-link-visited: #967fff;
24
24
  --pds-color-text-default: #ffffff;
25
25
  --pds-color-text-headings: var(--pds-color-text-default);
26
+ --pds-color-text-paragraph: var(--pds-color-text-default);
27
+ --pds-elevation-overlay: 0px, 8px, 12px, 0px, rgba(18, 18, 25, 0.6);
28
+ --pds-elevation-raised: 0px, 1px, 1px, 0px, rgba(18, 18, 25, 0.95);
26
29
  }
@@ -23,4 +23,7 @@
23
23
  --pds-color-link-visited: #967fff;
24
24
  --pds-color-text-default: #23232d;
25
25
  --pds-color-text-headings: var(--pds-color-text-default);
26
+ --pds-color-text-paragraph: #23232d;
27
+ --pds-elevation-overlay: 0px, 8px, 12px, 0px, rgba(113, 113, 124, 0.25);
28
+ --pds-elevation-raised: 0px, 1px, 1px, 0px, #aeaeb6;
26
29
  }
@@ -19,8 +19,5 @@
19
19
  --pds-color-global-gradient-midnight: linear-gradient(228.64deg, #3017A1 46.34%, #00E0C3 100%);
20
20
  --pds-color-global-gradient-sunrise: linear-gradient(227.79deg, #300068 38.28%, #E65F35 100%);
21
21
  --pds-color-global-gradient-sunset: linear-gradient(48.24deg, #EF13AD 0%, #300068 66.25%);
22
- --pds-typography-product-font-headings: 'Poppins', sans-serif;
23
- --pds-typography-product-font-text: 'Open Sans', sans-serif;
24
- --pds-typography-product-marketing-font-headings: 'Poppins', sans-serif;
25
- --pds-typography-product-marketing-font-text: 'Aleo', serif;
22
+ --pds-typography-font-default: 'Poppins', sans-serif;
26
23
  }