gatsby-design-tokens
Advanced tools
Comparing version 2.0.1 to 2.0.2
126
CHANGELOG.md
@@ -6,2 +6,13 @@ # Change Log | ||
## [2.0.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-design-tokens@2.0.1...gatsby-design-tokens@2.0.2) (2020-02-20) | ||
### Features | ||
- **gatsby-design-tokens:** Add "Inter" font stack ([#21598](https://github.com/gatsbyjs/gatsby/issues/21598)) ([b870db9](https://github.com/gatsbyjs/gatsby/commit/b870db9)) | ||
### BREAKING CHANGES | ||
- **gatsby-design-tokens:** `fonts.sans` now delivers the "Inter" font stack, not the `system` font stack anymore | ||
fix: `fonts.sans` and `.brand` aliases | ||
## [2.0.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-design-tokens@2.0.0...gatsby-design-tokens@2.0.1) (2020-02-11) | ||
@@ -11,2 +22,6 @@ | ||
### Bug Fixes | ||
- fix(gatsby-design-tokens): Fix `files` field in `package.json`: `dist` now includes `index.esm.js` and the two `dist/theme`s; before it only offered the main CommonJS module ([8c0d55c](https://github.com/gatsbyjs/gatsby/commit/8c0d55c)) | ||
# [2.0.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-design-tokens@1.0.10...gatsby-design-tokens@2.0.0) (2020-02-10) | ||
@@ -18,2 +33,113 @@ | ||
#### Tokens | ||
This update moves the rudimentary tokens even closer to our current sole target, CSS. This e.g. means that instead of exporting an array of integers for `fontSizes` or `space`, we now provide `rem` values instead (while still making the v1 variants available — but we do have "soft" preferences regarding default units for CSS, which are emphasized by these breaking changes). | ||
We currently only consume these tokens in the context of CSS, so let's make things a bit easier there: | ||
- `fontsSizes` exports `rem` values now; old values available at `fontSizesRaw` | ||
- `space` exports `rem` values now, too; old stuff available at `spaceRaw` | ||
- `fonts` exports a string now, ready to be used with the `font-family` CSS prop; old array of font family names available as `fontsLists` | ||
- `radii` now contains the `px` unit | ||
The update also embraces `theme-ui` a bit more directly by partially adopting and/or inheriting its naming conventions for a bunch of tokens, making "theme composition using token groups" even easier than before. | ||
Regarding the discussion in https://github.com/gatsby-inc/gatsby-interface/issues/181, everything but the `space` scale has been adjusted to hopefully "just work", or work easier than before. The update to v2 of `gatsby-design-tokens` should require almost no refactoring of values in `gatsby-interface` — | ||
- the `transition` properties partially follow a different naming convention | ||
- `fonts.header` changed to `fonts.heading` | ||
- `radii` values now come with the `px` unit, so the latter is not needed anymore in template literals | ||
— and apart from that should be solved by removing the transformation of `fontSizes` and `spaces` `to`rem`, and the`join`of`fonts` stacks. | ||
Here's all changes listed by "token group": | ||
##### `breakpoints` | ||
- BREAKING CHANGE: Remove `breakpoints.xxs` | ||
- All tokens started as only being consumed via `styled-system`. In its context, and using an object to define breakpoints, `breakpoints.xxs` made sense/was required. Since we switched to `theme-ui`, it doesn't anymore. `gatsby-interface` defines its own set of `breakpoints`; the `www` source already adjusted this when composing its `theme-ui`theme, so this shouldn't hurt at all. | ||
- feat: add export `breakpointsArray`, ready for `theme-ui`'s [responsive styles](https://theme-ui.com/getting-started/#responsive-styles) feature | ||
##### `colors` | ||
- feat: add missing steps in `colors.blackFade` and `colors.whiteFade`: | ||
- add `colors.blackFade[90]` | ||
- add `colors.blackFade[40]` | ||
- add `colors.blackFade[20]` | ||
- add `colors.blackFade[5]` | ||
- add `colors.whiteFade[90]` | ||
- add `colors.whiteFade[40]` | ||
- add `colors.whiteFade[20]` | ||
- add `colors.whiteFade[5]` | ||
- BREAKING CHANGE: fix `colors.blackFade[80]`, `colors.whiteFade[80]` | ||
- both were set to an opacity of `.85`, adjusted to `.8` | ||
- TODO: Adjust a couple of values for gatsbyjs.org; no clue about where we currently might use this in `gatsby-interface` and related (.com/Cloud dashboard). | ||
- feat: port `colors.code` from the gatsbyjs.org `theme-ui` theme to the `colors` tokens | ||
- 💚 This improves compliance with WCAG 2.0 AA color contrasts. | ||
- feat: add `colors.code.copyButton` | ||
- feat: add `colors.code.lineHighlightBackground` | ||
- feat: add `colors.code.scrollbarTrack` | ||
##### `fonts` | ||
- feat: Add aliases `body` and `sans` for `fonts.system` | ||
- BREAKING CHANGE: rename `fonts.header` to `fonts.heading` | ||
- Comply with `theme-ui` requirements: https://theme-ui.com/theme-spec#typography. | ||
- feat: Add alias `brand` for `fonts.heading` | ||
- BREAKING CHANGE: `fonts` exports a string now, ready to be used with the `font-family` CSS prop; the array of font family names is still available as `fontsLists` | ||
##### `fontSizes` | ||
- BREAKING CHANGE: `fontSizes` does now contain `rem` values; old scale (integers) still available as `fontSizesRaw` | ||
- feat: add export `fontSizesPx` | ||
##### `fontWeights` | ||
- BREAKING CHANGE: Name `fontWeights` — switch from array to object | ||
- Include the required theme-ui defaults `body`, `heading`, and `bold` (https://theme-ui.com/theme-spec#typography). | ||
- `body: 400` | ||
- `semiBold: 600` | ||
- `bold: 700` | ||
- `heading: 700` | ||
- `extraBold: 800` | ||
##### `lineHeights` | ||
- feat: Add line heights `heading` (equivalent to the existing `dense`) and `body` (equivalent to the existing `default`) to satisfy `theme-ui`'s ["Typography" theme requirements](https://theme-ui.com/theme-spec/#typography) | ||
##### `radii` | ||
- BREAKING CHANGE: Add `px` unit to radii scale values. | ||
##### `sizes` | ||
- BREAKING CHANGE: removed | ||
- As discussed in https://github.com/gatsby-inc/gatsby-interface/issues/181, this moves the current gatsbyjs.org-centric `sizes` tokens to `theme-gatsbyjs-org` for clarity, until a clear pattern emerges. | ||
##### `space` | ||
- BREAKING CHANGE: `space` does now contain `rem` values; old scale (integers) still available as `spaceRaw` | ||
- feat: add export `spacePx` | ||
##### `transition` | ||
- feat: Add `transition.default` shortcut | ||
- feat: Add `transition.curve.fastOutLinearIn` from `gatsby-interface` | ||
- feat: Add `transition.speed.faster` (`50ms`), matching `gatsby-interface`'s `blink` | ||
- feat: Add `transition.speed.slower` (`1000ms`), matching `gatsby-interface`'s `snail` | ||
- BREAKING CHANGE: change `transition.speed.slow` from `350ms` to `500ms`, now matching `gatsby-interface` | ||
##### `zIndices` | ||
- BREAKING CHANGE: removed | ||
- As discussed in https://github.com/gatsby-inc/gatsby-interface/issues/181, this moves the current gatsbyjs.org-centric `zIndices` tokens to `theme-gatsbyjs-org`for clarity, until a clear pattern emerges. | ||
#### Themes | ||
- feat: add base `theme-ui` Gatsby theme, gatsbyjs.org `theme-ui` theme | ||
- Both themes don't tree-shake yet, so no `agadoo` yet in the corresponding `gatsby-design-tokens/package.json` scripts. | ||
- Both export the `theme-ui` theme as `theme` and also provide individual token group exports (because we require them in `www` for usage outside of the `theme-ui` context). | ||
- Example usage: | ||
- `export { theme as default } from "gatsby-design-tokens/dist/theme-gatsbyjs-org"` in `www/src/gatsby-plugin-theme-ui/index` | ||
- Directly import individual token groups with `import { mediaQueries } from "gatsby-design-tokens/dist/theme-gatsbyjs-org"`. | ||
## [1.0.10](https://github.com/gatsbyjs/gatsby/compare/gatsby-design-tokens@1.0.9...gatsby-design-tokens@1.0.10) (2019-10-14) | ||
@@ -20,0 +146,0 @@ |
@@ -1,1 +0,1 @@ | ||
var e=[0,"1px solid","2px solid"],o={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},a=[];for(var f in o)a.push(o[f]);var r=a,b={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},p={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},i={body:["-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],system:["-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],heading:["Futura PT","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],monospace:["SFMono-Regular","Menlo","Monaco","Consolas","Liberation Mono","Courier New","monospace"],serif:["Georgia","Times New Roman","Times","serif"]},l=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],d=["12px","14px","16px","18px","20px","24px","28px","32px","36px","42px","48px","54px","60px","68px","76px","84px","92px"],m=[12,14,16,18,20,24,28,32,36,42,48,54,60,68,76,84,92],s={body:400,semiBold:600,bold:700,extraBold:800,heading:700},t={normal:"normal",tracked:"0.075em",tight:"-0.015em"},n={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},x={};for(var c in o)x[c]="@media (min-width: "+o[c]+")";var g=x,S=[0,"2px","4px","8px","16px","9999px","100%"],u={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},y=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],N=["0px","4px","8px","12px","16px","20px","24px","32px","40px","48px","56px","64px","72px"],I=[0,4,8,12,16,20,24,32,40,48,56,64,72],h={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}};export{e as borders,o as breakpoints,r as breakpointsArray,b as colors,l as fontSizes,d as fontSizesPx,m as fontSizesRaw,s as fontWeights,p as fonts,i as fontsLists,t as letterSpacings,n as lineHeights,g as mediaQueries,S as radii,u as shadows,y as space,N as spacePx,I as spaceRaw,h as transition}; | ||
var e=[0,"1px solid","2px solid"],o={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},a=[];for(var r in o)a.push(o[r]);var f=a,l={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},i={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",sans:"Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",brand:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},s={body:["-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],system:["-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],sans:["Inter","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],heading:["Futura PT","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],brand:["Futura PT","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],monospace:["SFMono-Regular","Menlo","Monaco","Consolas","Liberation Mono","Courier New","monospace"],serif:["Georgia","Times New Roman","Times","serif"]},b=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],m=["12px","14px","16px","18px","20px","24px","28px","32px","36px","42px","48px","54px","60px","68px","76px","84px","92px"],p=[12,14,16,18,20,24,28,32,36,42,48,54,60,68,76,84,92],t={body:400,semiBold:600,bold:700,extraBold:800,heading:700},d={normal:"normal",tracked:"0.075em",tight:"-0.015em"},n={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},g={};for(var c in o)g[c]="@media (min-width: "+o[c]+")";var x=g,S=[0,"2px","4px","8px","16px","9999px","100%"],u={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},y=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],I=["0px","4px","8px","12px","16px","20px","24px","32px","40px","48px","56px","64px","72px"],N=[0,4,8,12,16,20,24,32,40,48,56,64,72],j={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}};export{e as borders,o as breakpoints,f as breakpointsArray,l as colors,b as fontSizes,m as fontSizesPx,p as fontSizesRaw,t as fontWeights,i as fonts,s as fontsLists,d as letterSpacings,n as lineHeights,x as mediaQueries,S as radii,u as shadows,y as space,I as spacePx,N as spaceRaw,j as transition}; |
@@ -1,1 +0,1 @@ | ||
var e={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},o=[];for(var a in e)o.push(e[a]);var r=o,f={};for(var s in e)f[s]="@media (min-width: "+e[s]+")";var p=f;exports.borders=[0,"1px solid","2px solid"],exports.breakpoints=e,exports.breakpointsArray=r,exports.colors={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},exports.fontSizes=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],exports.fontSizesPx=["12px","14px","16px","18px","20px","24px","28px","32px","36px","42px","48px","54px","60px","68px","76px","84px","92px"],exports.fontSizesRaw=[12,14,16,18,20,24,28,32,36,42,48,54,60,68,76,84,92],exports.fontWeights={body:400,semiBold:600,bold:700,extraBold:800,heading:700},exports.fonts={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},exports.fontsLists={body:["-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],system:["-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],heading:["Futura PT","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],monospace:["SFMono-Regular","Menlo","Monaco","Consolas","Liberation Mono","Courier New","monospace"],serif:["Georgia","Times New Roman","Times","serif"]},exports.letterSpacings={normal:"normal",tracked:"0.075em",tight:"-0.015em"},exports.lineHeights={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},exports.mediaQueries=p,exports.radii=[0,"2px","4px","8px","16px","9999px","100%"],exports.shadows={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},exports.space=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],exports.spacePx=["0px","4px","8px","12px","16px","20px","24px","32px","40px","48px","56px","64px","72px"],exports.spaceRaw=[0,4,8,12,16,20,24,32,40,48,56,64,72],exports.transition={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}}; | ||
var e={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},o=[];for(var a in e)o.push(e[a]);var r=o,f={};for(var s in e)f[s]="@media (min-width: "+e[s]+")";var t=f;exports.borders=[0,"1px solid","2px solid"],exports.breakpoints=e,exports.breakpointsArray=r,exports.colors={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},exports.fontSizes=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],exports.fontSizesPx=["12px","14px","16px","18px","20px","24px","28px","32px","36px","42px","48px","54px","60px","68px","76px","84px","92px"],exports.fontSizesRaw=[12,14,16,18,20,24,28,32,36,42,48,54,60,68,76,84,92],exports.fontWeights={body:400,semiBold:600,bold:700,extraBold:800,heading:700},exports.fonts={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",sans:"Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",brand:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},exports.fontsLists={body:["-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],system:["-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],sans:["Inter","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],heading:["Futura PT","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],brand:["Futura PT","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],monospace:["SFMono-Regular","Menlo","Monaco","Consolas","Liberation Mono","Courier New","monospace"],serif:["Georgia","Times New Roman","Times","serif"]},exports.letterSpacings={normal:"normal",tracked:"0.075em",tight:"-0.015em"},exports.lineHeights={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},exports.mediaQueries=t,exports.radii=[0,"2px","4px","8px","16px","9999px","100%"],exports.shadows={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},exports.space=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],exports.spacePx=["0px","4px","8px","12px","16px","20px","24px","32px","40px","48px","56px","64px","72px"],exports.spaceRaw=[0,4,8,12,16,20,24,32,40,48,56,64,72],exports.transition={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}}; |
@@ -1,1 +0,1 @@ | ||
import e from"hex2rgba";function r(){return(r=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var o=arguments[r];for(var a in o)Object.prototype.hasOwnProperty.call(o,a)&&(e[a]=o[a])}return e}).apply(this,arguments)}var o={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},a=[];for(var t in o)a.push(o[t]);var i=a,l={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},d={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},g=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],n={body:400,semiBold:600,bold:700,extraBold:800,heading:700},p={normal:"normal",tracked:"0.075em",tight:"-0.015em"},b={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},c={};for(var f in o)c[f]="@media (min-width: "+o[f]+")";var u=c,s=[0,"2px","4px","8px","16px","9999px","100%"],h={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},m=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],x={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}},y=r({},l,{text:l.grey[80],background:l.white,primary:l.gatsby,secondary:l.purple[40],accent:l.orange[60],muted:l.grey[5],heading:l.text.header,textMuted:l.text.secondary}),k={breakpoints:i,colors:y,fonts:d,fontSizes:g,fontWeights:n,letterSpacings:p,lineHeights:b,mediaQueries:u,radii:s,shadows:h,space:m,transition:x},B=y.grey[90],w=r({},y,{banner:y.purple[70],ui:{background:y.grey[5],hover:y.purple[5],border:y.grey[20]},link:{color:y.purple[50],border:y.purple[30],hoverBorder:y.purple[50],hoverColor:y.purple[60]},icon:{dark:y.purple[60],neutral:y.grey[50],neutralLight:y.grey[30],background:y.white,accent:y.yellow[60],light:y.purple[10],lightActive:y.purple[20]},input:{background:y.white,backgroundFocus:y.white,border:y.grey[30],focusBorder:y.white,focusBoxShadow:y.purple[60],icon:y.grey[50],iconFocus:y.grey[60],placeholder:y.text.placeholder},card:{background:y.white,color:y.grey[50],header:y.black,starterLabelBackground:y.teal[5],starterLabelText:y.teal[70],pluginLabelBackground:y.orange[5],pluginLabelText:y.orange[90]},modal:{background:y.white,overlayBackground:e(y.white,.95)},navigation:{background:e(y.white,.985),linkDefault:y.grey[70],linkActive:y.purple[50],linkHover:y.gatsby,socialLink:y.grey[40]},search:{suggestionHighlightBackground:y.lavender,suggestionHighlightColor:y.gatsby},sidebar:{itemHoverBackground:e(y.purple[20],.275),itemBackgroundActive:"transparent",itemBorderColor:"transparent",activeSectionBackground:e(y.purple[20],.15),itemBorderActive:y.purple[10]},themedInput:{background:y.grey[10],backgroundFocus:y.white,focusBorder:y.purple[60],focusBoxShadow:y.purple[30],icon:y.grey[50],iconFocus:y.grey[60],placeholder:y.grey[60]},widget:{border:y.grey[10],background:y.white,color:y.text.primary},highlightedBox:{background:y.yellow[10],color:y.grey[80]},newsletter:{background:y.white,border:y.grey[10],heading:y.grey[70],stripeColorA:y.red[40],stripeColorB:y.blue[40]},button:{primaryBg:y.purple[60],primaryText:y.white,primaryBorder:y.purple[60],secondaryBg:"transparent",secondaryText:y.purple[50],secondaryBorder:y.purple[40]},pullquote:{color:y.purple[60],borderColor:y.purple[20]},modes:{dark:{background:"#131217",text:y.grey[30],heading:y.whiteFade[80],textMuted:y.grey[40],banner:e(y.purple[90],.975),muted:y.grey[90],icon:{dark:y.purple[50],neutral:y.grey[70],neutralLight:y.grey[90],background:y.darkBorder,accent:y.yellow[50],light:y.grey[90],lightActive:y.purple[90]},card:{background:y.grey[90],color:y.whiteFade[70],header:y.white,starterLabelBackground:e(y.teal[90],.125),starterLabelText:y.teal[10],pluginLabelBackground:e(y.orange[90],.125),pluginLabelText:y.orange[10]},modal:{background:"#131217",overlayBackground:e("#131217",.95)},code:{bg:"#1b191f",bgInline:B,border:y.grey[90],lineHighlightBackground:e(y.purple[90],.25),lineHighlightBorder:y.purple[90],scrollbarThumb:y.grey[70],scrollbarTrack:y.grey[90],copyButton:y.grey[40],add:y.green[50],comment:y.grey[30],cssString:y.orange[50],invisibles:"#e0d7d1",keyword:y.magenta[30],punctuation:y.whiteFade[70],regex:"#d88489",remove:y.red[40],selector:y.orange[30],tag:y.teal[60],text:y.grey[30]},link:{border:y.purple[90],color:y.purple[40],hoverBorder:y.purple[70],hoverColor:y.purple[30]},navigation:{background:e("#131217",.975),linkActive:y.purple[40],linkDefault:y.whiteFade[60],linkHover:y.white,socialLink:y.grey[60]},themedInput:{background:B,backgroundFocus:"black",focusBorder:y.purple[60],focusBoxShadow:y.purple[60],icon:y.grey[50],iconFocus:y.purple[50],placeholder:y.whiteFade[50]},shadows:{dialog:"0px 4px 16px rgba(19,18,23, 0.08), 0px 8px 24px rgba(0,0,0, 0.16)",floating:"0px 2px 4px rgba(19,18,23, 0.08), 0px 4px 8px rgba(0,0,0, 0.16)",overlay:"0px 4px 8px rgba(19,18,23, 0.08), 0px 8px 16px rgba(0,0,0, 0.16)",raised:"0px 1px 2px rgba(19,18,23, 0.08), 0px 2px 4px rgba(0,0,0, 0.08)"},sidebar:{itemBackgroundActive:"transparent",activeSectionBackground:e(y.purple[90],.2),itemBorderActive:y.purple[80],itemBorderColor:"transparent",itemHoverBackground:e(y.purple[90],.2)},ui:{background:"#131217",hover:y.purple[90],border:B},widget:{background:"#131217",border:B,color:y.white},highlightedBox:{background:y.grey[90],color:y.white},newsletter:{background:"#131217",border:B,heading:y.white,stripeColorA:y.red[90],stripeColorB:y.blue[90]},search:{suggestionHighlightBackground:y.gatsby,suggestionHighlightColor:y.purple[20]},button:{secondaryBg:"transparent",secondaryText:y.purple[40],secondaryBorder:y.purple[40]},pullquote:{color:y.purple[10],borderColor:y.purple[90]}}}}),v={headerHeight:m[11],bannerHeight:m[8],logo:m[6],pluginsSidebarWidthDefault:"21rem",pluginsSidebarWidthLarge:"24rem",showcaseSidebarMaxWidth:"15rem",sidebarItemMinHeight:m[8],sidebarUtilityHeight:m[10],pageHeadingDesktopWidth:m[10],mainContentWidth:{default:"54rem",withSidebar:"42rem"},sidebarWidth:{default:"16.5rem",large:"18rem",mobile:"320px"},tocWidth:"18rem",avatar:m[7]},S={widget:2,navigation:5,banner:10,modal:10,sidebar:10,floatingActionButton:20,skipLink:100},C=r({},k,{initialColorMode:"light",useColorSchemeMediaQuery:!0,colors:w,sizes:v,zIndices:S,buttons:{large:{fontSize:4,px:4,height:"52px"},small:{fontSize:2,py:2,px:3}},links:{muted:{fontSize:1,lineHeight:"solid",py:3,"&&":{border:0,color:"textMuted",display:"flex",fontWeight:"body"},"&&:hover":{color:"link.hoverColor"}}}});export{i as breakpoints,w as colors,g as fontSizes,n as fontWeights,d as fonts,p as letterSpacings,b as lineHeights,u as mediaQueries,s as radii,h as shadows,v as sizes,m as space,C as theme,x as transition,S as zIndices}; | ||
import e from"hex2rgba";function r(){return(r=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var o=arguments[r];for(var a in o)Object.prototype.hasOwnProperty.call(o,a)&&(e[a]=o[a])}return e}).apply(this,arguments)}var o={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},a=[];for(var t in o)a.push(o[t]);var i=a,l={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},d={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",sans:"Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",brand:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},n=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],g={body:400,semiBold:600,bold:700,extraBold:800,heading:700},p={normal:"normal",tracked:"0.075em",tight:"-0.015em"},b={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},c={};for(var f in o)c[f]="@media (min-width: "+o[f]+")";var s=c,u=[0,"2px","4px","8px","16px","9999px","100%"],m={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},h=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],x={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}},y=r({},l,{text:l.grey[80],background:l.white,primary:l.gatsby,secondary:l.purple[40],accent:l.orange[60],muted:l.grey[5],heading:l.text.header,textMuted:l.text.secondary}),k={breakpoints:i,colors:y,fonts:d,fontSizes:n,fontWeights:g,letterSpacings:p,lineHeights:b,mediaQueries:s,radii:u,shadows:m,space:h,transition:x},B=y.grey[90],v=r({},y,{banner:y.purple[70],ui:{background:y.grey[5],hover:y.purple[5],border:y.grey[20]},link:{color:y.purple[50],border:y.purple[30],hoverBorder:y.purple[50],hoverColor:y.purple[60]},icon:{dark:y.purple[60],neutral:y.grey[50],neutralLight:y.grey[30],background:y.white,accent:y.yellow[60],light:y.purple[10],lightActive:y.purple[20]},input:{background:y.white,backgroundFocus:y.white,border:y.grey[30],focusBorder:y.white,focusBoxShadow:y.purple[60],icon:y.grey[50],iconFocus:y.grey[60],placeholder:y.text.placeholder},card:{background:y.white,color:y.grey[50],header:y.black,starterLabelBackground:y.teal[5],starterLabelText:y.teal[70],pluginLabelBackground:y.orange[5],pluginLabelText:y.orange[90]},modal:{background:y.white,overlayBackground:e(y.white,.95)},navigation:{background:e(y.white,.985),linkDefault:y.grey[70],linkActive:y.purple[50],linkHover:y.gatsby,socialLink:y.grey[40]},search:{suggestionHighlightBackground:y.lavender,suggestionHighlightColor:y.gatsby},sidebar:{itemHoverBackground:e(y.purple[20],.275),itemBackgroundActive:"transparent",itemBorderColor:"transparent",activeSectionBackground:e(y.purple[20],.15),itemBorderActive:y.purple[10]},themedInput:{background:y.grey[10],backgroundFocus:y.white,focusBorder:y.purple[60],focusBoxShadow:y.purple[30],icon:y.grey[50],iconFocus:y.grey[60],placeholder:y.grey[60]},widget:{border:y.grey[10],background:y.white,color:y.text.primary},highlightedBox:{background:y.yellow[10],color:y.grey[80]},newsletter:{background:y.white,border:y.grey[10],heading:y.grey[70],stripeColorA:y.red[40],stripeColorB:y.blue[40]},button:{primaryBg:y.purple[60],primaryText:y.white,primaryBorder:y.purple[60],secondaryBg:"transparent",secondaryText:y.purple[50],secondaryBorder:y.purple[40]},pullquote:{color:y.purple[60],borderColor:y.purple[20]},modes:{dark:{background:"#131217",text:y.grey[30],heading:y.whiteFade[80],textMuted:y.grey[40],banner:e(y.purple[90],.975),muted:y.grey[90],icon:{dark:y.purple[50],neutral:y.grey[70],neutralLight:y.grey[90],background:y.darkBorder,accent:y.yellow[50],light:y.grey[90],lightActive:y.purple[90]},card:{background:y.grey[90],color:y.whiteFade[70],header:y.white,starterLabelBackground:e(y.teal[90],.125),starterLabelText:y.teal[10],pluginLabelBackground:e(y.orange[90],.125),pluginLabelText:y.orange[10]},modal:{background:"#131217",overlayBackground:e("#131217",.95)},code:{bg:"#1b191f",bgInline:B,border:y.grey[90],lineHighlightBackground:e(y.purple[90],.25),lineHighlightBorder:y.purple[90],scrollbarThumb:y.grey[70],scrollbarTrack:y.grey[90],copyButton:y.grey[40],add:y.green[50],comment:y.grey[30],cssString:y.orange[50],invisibles:"#e0d7d1",keyword:y.magenta[30],punctuation:y.whiteFade[70],regex:"#d88489",remove:y.red[40],selector:y.orange[30],tag:y.teal[60],text:y.grey[30]},link:{border:y.purple[90],color:y.purple[40],hoverBorder:y.purple[70],hoverColor:y.purple[30]},navigation:{background:e("#131217",.975),linkActive:y.purple[40],linkDefault:y.whiteFade[60],linkHover:y.white,socialLink:y.grey[60]},themedInput:{background:B,backgroundFocus:"black",focusBorder:y.purple[60],focusBoxShadow:y.purple[60],icon:y.grey[50],iconFocus:y.purple[50],placeholder:y.whiteFade[50]},shadows:{dialog:"0px 4px 16px rgba(19,18,23, 0.08), 0px 8px 24px rgba(0,0,0, 0.16)",floating:"0px 2px 4px rgba(19,18,23, 0.08), 0px 4px 8px rgba(0,0,0, 0.16)",overlay:"0px 4px 8px rgba(19,18,23, 0.08), 0px 8px 16px rgba(0,0,0, 0.16)",raised:"0px 1px 2px rgba(19,18,23, 0.08), 0px 2px 4px rgba(0,0,0, 0.08)"},sidebar:{itemBackgroundActive:"transparent",activeSectionBackground:e(y.purple[90],.2),itemBorderActive:y.purple[80],itemBorderColor:"transparent",itemHoverBackground:e(y.purple[90],.2)},ui:{background:"#131217",hover:y.purple[90],border:B},widget:{background:"#131217",border:B,color:y.white},highlightedBox:{background:y.grey[90],color:y.white},newsletter:{background:"#131217",border:B,heading:y.white,stripeColorA:y.red[90],stripeColorB:y.blue[90]},search:{suggestionHighlightBackground:y.gatsby,suggestionHighlightColor:y.purple[20]},button:{secondaryBg:"transparent",secondaryText:y.purple[40],secondaryBorder:y.purple[40]},pullquote:{color:y.purple[10],borderColor:y.purple[90]}}}}),w={headerHeight:h[11],bannerHeight:h[8],logo:h[6],pluginsSidebarWidthDefault:"21rem",pluginsSidebarWidthLarge:"24rem",showcaseSidebarMaxWidth:"15rem",sidebarItemMinHeight:h[8],sidebarUtilityHeight:h[10],pageHeadingDesktopWidth:h[10],mainContentWidth:{default:"54rem",withSidebar:"42rem"},sidebarWidth:{default:"16.5rem",large:"18rem",mobile:"320px"},tocWidth:"18rem",avatar:h[7]},S={widget:2,navigation:5,banner:10,modal:10,sidebar:10,floatingActionButton:20,skipLink:100},C=r({},k,{initialColorMode:"light",useColorSchemeMediaQuery:!0,colors:v,sizes:w,zIndices:S,buttons:{large:{fontSize:4,px:4,height:"52px"},small:{fontSize:2,py:2,px:3}},links:{muted:{fontSize:1,lineHeight:"solid",py:3,"&&":{border:0,color:"textMuted",display:"flex",fontWeight:"body"},"&&:hover":{color:"link.hoverColor"}}}});export{i as breakpoints,v as colors,n as fontSizes,g as fontWeights,d as fonts,p as letterSpacings,b as lineHeights,s as mediaQueries,u as radii,m as shadows,w as sizes,h as space,C as theme,x as transition,S as zIndices}; |
@@ -1,1 +0,1 @@ | ||
var e,r=(e=require("hex2rgba"))&&"object"==typeof e&&"default"in e?e.default:e;function o(){return(o=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var o=arguments[r];for(var a in o)Object.prototype.hasOwnProperty.call(o,a)&&(e[a]=o[a])}return e}).apply(this,arguments)}var a={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},t=[];for(var i in a)t.push(a[i]);var l=t,d={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},n={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},p=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],g={body:400,semiBold:600,bold:700,extraBold:800,heading:700},c={normal:"normal",tracked:"0.075em",tight:"-0.015em"},b={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},f={};for(var s in a)f[s]="@media (min-width: "+a[s]+")";var u=f,h=[0,"2px","4px","8px","16px","9999px","100%"],m={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},x=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],y={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}},k=o({},d,{text:d.grey[80],background:d.white,primary:d.gatsby,secondary:d.purple[40],accent:d.orange[60],muted:d.grey[5],heading:d.text.header,textMuted:d.text.secondary}),w={breakpoints:l,colors:k,fonts:n,fontSizes:p,fontWeights:g,letterSpacings:c,lineHeights:b,mediaQueries:u,radii:h,shadows:m,space:x,transition:y},B=k.grey[90],v=o({},k,{banner:k.purple[70],ui:{background:k.grey[5],hover:k.purple[5],border:k.grey[20]},link:{color:k.purple[50],border:k.purple[30],hoverBorder:k.purple[50],hoverColor:k.purple[60]},icon:{dark:k.purple[60],neutral:k.grey[50],neutralLight:k.grey[30],background:k.white,accent:k.yellow[60],light:k.purple[10],lightActive:k.purple[20]},input:{background:k.white,backgroundFocus:k.white,border:k.grey[30],focusBorder:k.white,focusBoxShadow:k.purple[60],icon:k.grey[50],iconFocus:k.grey[60],placeholder:k.text.placeholder},card:{background:k.white,color:k.grey[50],header:k.black,starterLabelBackground:k.teal[5],starterLabelText:k.teal[70],pluginLabelBackground:k.orange[5],pluginLabelText:k.orange[90]},modal:{background:k.white,overlayBackground:r(k.white,.95)},navigation:{background:r(k.white,.985),linkDefault:k.grey[70],linkActive:k.purple[50],linkHover:k.gatsby,socialLink:k.grey[40]},search:{suggestionHighlightBackground:k.lavender,suggestionHighlightColor:k.gatsby},sidebar:{itemHoverBackground:r(k.purple[20],.275),itemBackgroundActive:"transparent",itemBorderColor:"transparent",activeSectionBackground:r(k.purple[20],.15),itemBorderActive:k.purple[10]},themedInput:{background:k.grey[10],backgroundFocus:k.white,focusBorder:k.purple[60],focusBoxShadow:k.purple[30],icon:k.grey[50],iconFocus:k.grey[60],placeholder:k.grey[60]},widget:{border:k.grey[10],background:k.white,color:k.text.primary},highlightedBox:{background:k.yellow[10],color:k.grey[80]},newsletter:{background:k.white,border:k.grey[10],heading:k.grey[70],stripeColorA:k.red[40],stripeColorB:k.blue[40]},button:{primaryBg:k.purple[60],primaryText:k.white,primaryBorder:k.purple[60],secondaryBg:"transparent",secondaryText:k.purple[50],secondaryBorder:k.purple[40]},pullquote:{color:k.purple[60],borderColor:k.purple[20]},modes:{dark:{background:"#131217",text:k.grey[30],heading:k.whiteFade[80],textMuted:k.grey[40],banner:r(k.purple[90],.975),muted:k.grey[90],icon:{dark:k.purple[50],neutral:k.grey[70],neutralLight:k.grey[90],background:k.darkBorder,accent:k.yellow[50],light:k.grey[90],lightActive:k.purple[90]},card:{background:k.grey[90],color:k.whiteFade[70],header:k.white,starterLabelBackground:r(k.teal[90],.125),starterLabelText:k.teal[10],pluginLabelBackground:r(k.orange[90],.125),pluginLabelText:k.orange[10]},modal:{background:"#131217",overlayBackground:r("#131217",.95)},code:{bg:"#1b191f",bgInline:B,border:k.grey[90],lineHighlightBackground:r(k.purple[90],.25),lineHighlightBorder:k.purple[90],scrollbarThumb:k.grey[70],scrollbarTrack:k.grey[90],copyButton:k.grey[40],add:k.green[50],comment:k.grey[30],cssString:k.orange[50],invisibles:"#e0d7d1",keyword:k.magenta[30],punctuation:k.whiteFade[70],regex:"#d88489",remove:k.red[40],selector:k.orange[30],tag:k.teal[60],text:k.grey[30]},link:{border:k.purple[90],color:k.purple[40],hoverBorder:k.purple[70],hoverColor:k.purple[30]},navigation:{background:r("#131217",.975),linkActive:k.purple[40],linkDefault:k.whiteFade[60],linkHover:k.white,socialLink:k.grey[60]},themedInput:{background:B,backgroundFocus:"black",focusBorder:k.purple[60],focusBoxShadow:k.purple[60],icon:k.grey[50],iconFocus:k.purple[50],placeholder:k.whiteFade[50]},shadows:{dialog:"0px 4px 16px rgba(19,18,23, 0.08), 0px 8px 24px rgba(0,0,0, 0.16)",floating:"0px 2px 4px rgba(19,18,23, 0.08), 0px 4px 8px rgba(0,0,0, 0.16)",overlay:"0px 4px 8px rgba(19,18,23, 0.08), 0px 8px 16px rgba(0,0,0, 0.16)",raised:"0px 1px 2px rgba(19,18,23, 0.08), 0px 2px 4px rgba(0,0,0, 0.08)"},sidebar:{itemBackgroundActive:"transparent",activeSectionBackground:r(k.purple[90],.2),itemBorderActive:k.purple[80],itemBorderColor:"transparent",itemHoverBackground:r(k.purple[90],.2)},ui:{background:"#131217",hover:k.purple[90],border:B},widget:{background:"#131217",border:B,color:k.white},highlightedBox:{background:k.grey[90],color:k.white},newsletter:{background:"#131217",border:B,heading:k.white,stripeColorA:k.red[90],stripeColorB:k.blue[90]},search:{suggestionHighlightBackground:k.gatsby,suggestionHighlightColor:k.purple[20]},button:{secondaryBg:"transparent",secondaryText:k.purple[40],secondaryBorder:k.purple[40]},pullquote:{color:k.purple[10],borderColor:k.purple[90]}}}}),S={headerHeight:x[11],bannerHeight:x[8],logo:x[6],pluginsSidebarWidthDefault:"21rem",pluginsSidebarWidthLarge:"24rem",showcaseSidebarMaxWidth:"15rem",sidebarItemMinHeight:x[8],sidebarUtilityHeight:x[10],pageHeadingDesktopWidth:x[10],mainContentWidth:{default:"54rem",withSidebar:"42rem"},sidebarWidth:{default:"16.5rem",large:"18rem",mobile:"320px"},tocWidth:"18rem",avatar:x[7]},C={widget:2,navigation:5,banner:10,modal:10,sidebar:10,floatingActionButton:20,skipLink:100},H=o({},w,{initialColorMode:"light",useColorSchemeMediaQuery:!0,colors:v,sizes:S,zIndices:C,buttons:{large:{fontSize:4,px:4,height:"52px"},small:{fontSize:2,py:2,px:3}},links:{muted:{fontSize:1,lineHeight:"solid",py:3,"&&":{border:0,color:"textMuted",display:"flex",fontWeight:"body"},"&&:hover":{color:"link.hoverColor"}}}});exports.breakpoints=l,exports.colors=v,exports.fontSizes=p,exports.fontWeights=g,exports.fonts=n,exports.letterSpacings=c,exports.lineHeights=b,exports.mediaQueries=u,exports.radii=h,exports.shadows=m,exports.sizes=S,exports.space=x,exports.theme=H,exports.transition=y,exports.zIndices=C; | ||
var e,r=(e=require("hex2rgba"))&&"object"==typeof e&&"default"in e?e.default:e;function o(){return(o=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var o=arguments[r];for(var a in o)Object.prototype.hasOwnProperty.call(o,a)&&(e[a]=o[a])}return e}).apply(this,arguments)}var a={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},t=[];for(var i in a)t.push(a[i]);var l=t,d={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},n={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",sans:"Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",brand:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},p=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],g={body:400,semiBold:600,bold:700,extraBold:800,heading:700},s={normal:"normal",tracked:"0.075em",tight:"-0.015em"},c={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},b={};for(var f in a)b[f]="@media (min-width: "+a[f]+")";var u=b,m=[0,"2px","4px","8px","16px","9999px","100%"],h={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},x=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],y={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}},k=o({},d,{text:d.grey[80],background:d.white,primary:d.gatsby,secondary:d.purple[40],accent:d.orange[60],muted:d.grey[5],heading:d.text.header,textMuted:d.text.secondary}),B={breakpoints:l,colors:k,fonts:n,fontSizes:p,fontWeights:g,letterSpacings:s,lineHeights:c,mediaQueries:u,radii:m,shadows:h,space:x,transition:y},v=k.grey[90],w=o({},k,{banner:k.purple[70],ui:{background:k.grey[5],hover:k.purple[5],border:k.grey[20]},link:{color:k.purple[50],border:k.purple[30],hoverBorder:k.purple[50],hoverColor:k.purple[60]},icon:{dark:k.purple[60],neutral:k.grey[50],neutralLight:k.grey[30],background:k.white,accent:k.yellow[60],light:k.purple[10],lightActive:k.purple[20]},input:{background:k.white,backgroundFocus:k.white,border:k.grey[30],focusBorder:k.white,focusBoxShadow:k.purple[60],icon:k.grey[50],iconFocus:k.grey[60],placeholder:k.text.placeholder},card:{background:k.white,color:k.grey[50],header:k.black,starterLabelBackground:k.teal[5],starterLabelText:k.teal[70],pluginLabelBackground:k.orange[5],pluginLabelText:k.orange[90]},modal:{background:k.white,overlayBackground:r(k.white,.95)},navigation:{background:r(k.white,.985),linkDefault:k.grey[70],linkActive:k.purple[50],linkHover:k.gatsby,socialLink:k.grey[40]},search:{suggestionHighlightBackground:k.lavender,suggestionHighlightColor:k.gatsby},sidebar:{itemHoverBackground:r(k.purple[20],.275),itemBackgroundActive:"transparent",itemBorderColor:"transparent",activeSectionBackground:r(k.purple[20],.15),itemBorderActive:k.purple[10]},themedInput:{background:k.grey[10],backgroundFocus:k.white,focusBorder:k.purple[60],focusBoxShadow:k.purple[30],icon:k.grey[50],iconFocus:k.grey[60],placeholder:k.grey[60]},widget:{border:k.grey[10],background:k.white,color:k.text.primary},highlightedBox:{background:k.yellow[10],color:k.grey[80]},newsletter:{background:k.white,border:k.grey[10],heading:k.grey[70],stripeColorA:k.red[40],stripeColorB:k.blue[40]},button:{primaryBg:k.purple[60],primaryText:k.white,primaryBorder:k.purple[60],secondaryBg:"transparent",secondaryText:k.purple[50],secondaryBorder:k.purple[40]},pullquote:{color:k.purple[60],borderColor:k.purple[20]},modes:{dark:{background:"#131217",text:k.grey[30],heading:k.whiteFade[80],textMuted:k.grey[40],banner:r(k.purple[90],.975),muted:k.grey[90],icon:{dark:k.purple[50],neutral:k.grey[70],neutralLight:k.grey[90],background:k.darkBorder,accent:k.yellow[50],light:k.grey[90],lightActive:k.purple[90]},card:{background:k.grey[90],color:k.whiteFade[70],header:k.white,starterLabelBackground:r(k.teal[90],.125),starterLabelText:k.teal[10],pluginLabelBackground:r(k.orange[90],.125),pluginLabelText:k.orange[10]},modal:{background:"#131217",overlayBackground:r("#131217",.95)},code:{bg:"#1b191f",bgInline:v,border:k.grey[90],lineHighlightBackground:r(k.purple[90],.25),lineHighlightBorder:k.purple[90],scrollbarThumb:k.grey[70],scrollbarTrack:k.grey[90],copyButton:k.grey[40],add:k.green[50],comment:k.grey[30],cssString:k.orange[50],invisibles:"#e0d7d1",keyword:k.magenta[30],punctuation:k.whiteFade[70],regex:"#d88489",remove:k.red[40],selector:k.orange[30],tag:k.teal[60],text:k.grey[30]},link:{border:k.purple[90],color:k.purple[40],hoverBorder:k.purple[70],hoverColor:k.purple[30]},navigation:{background:r("#131217",.975),linkActive:k.purple[40],linkDefault:k.whiteFade[60],linkHover:k.white,socialLink:k.grey[60]},themedInput:{background:v,backgroundFocus:"black",focusBorder:k.purple[60],focusBoxShadow:k.purple[60],icon:k.grey[50],iconFocus:k.purple[50],placeholder:k.whiteFade[50]},shadows:{dialog:"0px 4px 16px rgba(19,18,23, 0.08), 0px 8px 24px rgba(0,0,0, 0.16)",floating:"0px 2px 4px rgba(19,18,23, 0.08), 0px 4px 8px rgba(0,0,0, 0.16)",overlay:"0px 4px 8px rgba(19,18,23, 0.08), 0px 8px 16px rgba(0,0,0, 0.16)",raised:"0px 1px 2px rgba(19,18,23, 0.08), 0px 2px 4px rgba(0,0,0, 0.08)"},sidebar:{itemBackgroundActive:"transparent",activeSectionBackground:r(k.purple[90],.2),itemBorderActive:k.purple[80],itemBorderColor:"transparent",itemHoverBackground:r(k.purple[90],.2)},ui:{background:"#131217",hover:k.purple[90],border:v},widget:{background:"#131217",border:v,color:k.white},highlightedBox:{background:k.grey[90],color:k.white},newsletter:{background:"#131217",border:v,heading:k.white,stripeColorA:k.red[90],stripeColorB:k.blue[90]},search:{suggestionHighlightBackground:k.gatsby,suggestionHighlightColor:k.purple[20]},button:{secondaryBg:"transparent",secondaryText:k.purple[40],secondaryBorder:k.purple[40]},pullquote:{color:k.purple[10],borderColor:k.purple[90]}}}}),S={headerHeight:x[11],bannerHeight:x[8],logo:x[6],pluginsSidebarWidthDefault:"21rem",pluginsSidebarWidthLarge:"24rem",showcaseSidebarMaxWidth:"15rem",sidebarItemMinHeight:x[8],sidebarUtilityHeight:x[10],pageHeadingDesktopWidth:x[10],mainContentWidth:{default:"54rem",withSidebar:"42rem"},sidebarWidth:{default:"16.5rem",large:"18rem",mobile:"320px"},tocWidth:"18rem",avatar:x[7]},C={widget:2,navigation:5,banner:10,modal:10,sidebar:10,floatingActionButton:20,skipLink:100},H=o({},B,{initialColorMode:"light",useColorSchemeMediaQuery:!0,colors:w,sizes:S,zIndices:C,buttons:{large:{fontSize:4,px:4,height:"52px"},small:{fontSize:2,py:2,px:3}},links:{muted:{fontSize:1,lineHeight:"solid",py:3,"&&":{border:0,color:"textMuted",display:"flex",fontWeight:"body"},"&&:hover":{color:"link.hoverColor"}}}});exports.breakpoints=l,exports.colors=w,exports.fontSizes=p,exports.fontWeights=g,exports.fonts=n,exports.letterSpacings=s,exports.lineHeights=c,exports.mediaQueries=u,exports.radii=m,exports.shadows=h,exports.sizes=S,exports.space=x,exports.theme=H,exports.transition=y,exports.zIndices=C; |
@@ -1,1 +0,1 @@ | ||
function e(){return(e=Object.assign||function(e){for(var a=1;a<arguments.length;a++){var f=arguments[a];for(var r in f)Object.prototype.hasOwnProperty.call(f,r)&&(e[r]=f[r])}return e}).apply(this,arguments)}var a={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},f=[];for(var r in a)f.push(a[r]);var o=f,b={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},d={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},t=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],i={body:400,semiBold:600,bold:700,extraBold:800,heading:700},s={normal:"normal",tracked:"0.075em",tight:"-0.015em"},c={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},l={};for(var n in a)l[n]="@media (min-width: "+a[n]+")";var m=l,g=[0,"2px","4px","8px","16px","9999px","100%"],p={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},x=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],u={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}},y=e({},b,{text:b.grey[80],background:b.white,primary:b.gatsby,secondary:b.purple[40],accent:b.orange[60],muted:b.grey[5],heading:b.text.header,textMuted:b.text.secondary}),h={breakpoints:o,colors:y,fonts:d,fontSizes:t,fontWeights:i,letterSpacings:s,lineHeights:c,mediaQueries:m,radii:g,shadows:p,space:x,transition:u};export{o as breakpoints,y as colors,t as fontSizes,i as fontWeights,d as fonts,s as letterSpacings,c as lineHeights,m as mediaQueries,g as radii,p as shadows,x as space,h as theme,u as transition}; | ||
function e(){return(e=Object.assign||function(e){for(var a=1;a<arguments.length;a++){var o=arguments[a];for(var r in o)Object.prototype.hasOwnProperty.call(o,r)&&(e[r]=o[r])}return e}).apply(this,arguments)}var a={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},o=[];for(var r in a)o.push(a[r]);var f=o,b={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},t={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",sans:"Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",brand:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},d=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],i={body:400,semiBold:600,bold:700,extraBold:800,heading:700},s={normal:"normal",tracked:"0.075em",tight:"-0.015em"},l={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},n={};for(var m in a)n[m]="@media (min-width: "+a[m]+")";var c=n,g=[0,"2px","4px","8px","16px","9999px","100%"],p={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},x=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],u={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}},y=e({},b,{text:b.grey[80],background:b.white,primary:b.gatsby,secondary:b.purple[40],accent:b.orange[60],muted:b.grey[5],heading:b.text.header,textMuted:b.text.secondary}),S={breakpoints:f,colors:y,fonts:t,fontSizes:d,fontWeights:i,letterSpacings:s,lineHeights:l,mediaQueries:c,radii:g,shadows:p,space:x,transition:u};export{f as breakpoints,y as colors,d as fontSizes,i as fontWeights,t as fonts,s as letterSpacings,l as lineHeights,c as mediaQueries,g as radii,p as shadows,x as space,S as theme,u as transition}; |
@@ -1,1 +0,1 @@ | ||
function e(){return(e=Object.assign||function(e){for(var a=1;a<arguments.length;a++){var r=arguments[a];for(var f in r)Object.prototype.hasOwnProperty.call(r,f)&&(e[f]=r[f])}return e}).apply(this,arguments)}var a={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},r=[];for(var f in a)r.push(a[f]);var o=r,t={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},b={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},d=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],s={body:400,semiBold:600,bold:700,extraBold:800,heading:700},i={normal:"normal",tracked:"0.075em",tight:"-0.015em"},n={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},p={};for(var c in a)p[c]="@media (min-width: "+a[c]+")";var l=p,m=[0,"2px","4px","8px","16px","9999px","100%"],g={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},x=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],u={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}},h=e({},t,{text:t.grey[80],background:t.white,primary:t.gatsby,secondary:t.purple[40],accent:t.orange[60],muted:t.grey[5],heading:t.text.header,textMuted:t.text.secondary}),y={breakpoints:o,colors:h,fonts:b,fontSizes:d,fontWeights:s,letterSpacings:i,lineHeights:n,mediaQueries:l,radii:m,shadows:g,space:x,transition:u};exports.breakpoints=o,exports.colors=h,exports.fontSizes=d,exports.fontWeights=s,exports.fonts=b,exports.letterSpacings=i,exports.lineHeights=n,exports.mediaQueries=l,exports.radii=m,exports.shadows=g,exports.space=x,exports.theme=y,exports.transition=u; | ||
function e(){return(e=Object.assign||function(e){for(var a=1;a<arguments.length;a++){var o=arguments[a];for(var r in o)Object.prototype.hasOwnProperty.call(o,r)&&(e[r]=o[r])}return e}).apply(this,arguments)}var a={xs:"400px",sm:"550px",md:"750px",lg:"1000px",xl:"1200px",xxl:"1600px"},o=[];for(var r in a)o.push(a[r]);var f=o,t={purple:{5:"#fcfaff",10:"#f6edfa",20:"#f1defa",30:"#d9bae8",40:"#b17acc",50:"#8a4baf",60:"#663399",70:"#542c85",80:"#452475",90:"#362066"},orange:{5:"#fffcf7",10:"#fff4db",20:"#ffedbf",30:"#ffe4a1",40:"#ffd280",50:"#ffb238",60:"#fb8400",70:"#f67300",80:"#e65800",90:"#db3a00"},yellow:{5:"#fffdf7",10:"#fff5bf",20:"#fff2a8",30:"#ffeb99",40:"#ffdf37",50:"#fed038",60:"#fec21e",70:"#e3a617",80:"#bf9141",90:"#8a6534"},red:{5:"#fffafa",10:"#fde7e7",20:"#ffbab8",30:"#ff8885",40:"#ff5a54",50:"#fa2915",60:"#ec1818",70:"#da0013",80:"#ce0009",90:"#b80000"},magenta:{5:"#fffafd",10:"#ffe6f6",20:"#f2c4e3",30:"#e899ce",40:"#d459ab",50:"#bc027f",60:"#a6026a",70:"#940159",80:"#7d0e59",90:"#690147"},blue:{5:"#f5fcff",10:"#dbf0ff",20:"#90cdf9",30:"#63b8f6",40:"#3fa9f5",50:"#0d96f2",60:"#0e8de6",70:"#047bd3",80:"#006ac1",90:"#004ca3"},teal:{5:"#f7ffff",10:"#dcfffd",20:"#ccfffc",30:"#a6fffa",40:"#73fff7",50:"#05f7f4",60:"#2de3da",70:"#00bdb6",80:"#10a39e",90:"#008577"},green:{5:"#f7fdf7",10:"#def5dc",20:"#a1da9e",30:"#79cd75",40:"#59c156",50:"#37b635",60:"#2ca72c",70:"#1d9520",80:"#088413",90:"#006500"},grey:{5:"#fbfbfb",10:"#f5f5f5",20:"#f0f0f2",30:"#d9d7e0",40:"#b7b5bd",50:"#78757a",60:"#635e69",70:"#48434f",80:"#36313d",90:"#232129"},white:"#ffffff",black:"#000000",gatsby:"#663399",lilac:"#8a4baf",lavender:"#f1defa",accent:"#ffb238",warning:"#da0013",blackFade:{5:"rgba(35, 33, 41, 0.05)",10:"rgba(35, 33, 41, 0.1)",20:"rgba(35, 33, 41, 0.2)",30:"rgba(35, 33, 41, 0.3)",40:"rgba(35, 33, 41, 0.4)",50:"rgba(35, 33, 41, 0.5)",60:"rgba(35, 33, 41, 0.6)",70:"rgba(35, 33, 41, 0.7)",80:"rgba(35, 33, 41, 0.8)",90:"rgba(35, 33, 41, 0.9)"},whiteFade:{5:"rgba(255, 255, 255, 0.05)",10:"rgba(255, 255, 255, 0.1)",20:"rgba(255, 255, 255, 0.2)",30:"rgba(255, 255, 255, 0.3)",40:"rgba(255, 255, 255, 0.4)",50:"rgba(255, 255, 255, 0.5)",60:"rgba(255, 255, 255, 0.6)",70:"rgba(255, 255, 255, 0.7)",80:"rgba(255, 255, 255, 0.8)",90:"rgba(255, 255, 255, 0.9)"},ui:{background:"#fbfbfb",hover:"#fcfaff",border:{subtle:"#f0f0f2"}},link:{color:"#8a4baf",border:"#d9bae8",hoverBorder:"#8a4baf"},text:{header:"#000000",primary:"#36313d",secondary:"#78757a",placeholder:"#b7b5bd"},input:{border:"#d9d7e0",focusBorder:"#ffd280",focusBoxShadow:"#ffedbf"},code:{bgInline:"#fbf2e9",bg:"#fdfaf6",border:"#faede5",text:"#866c5b",remove:"#da0013",add:"#088413",selector:"#b94185",tag:"#137886",keyword:"#096fb3",comment:"#527713",punctuation:"#53450e",regex:"#dc0437",cssString:"#a2466c",invisibles:"#e0d7d1",scrollbarThumb:"#f4d1c6",lineHighlightBorder:"#f1beb6",copyButton:"#635e69",lineHighlightBackground:"#fbf0ea",scrollbarTrack:"#faede5"}},s={body:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",system:"-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",sans:"Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",heading:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",brand:"Futura PT, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji",monospace:"SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",serif:"Georgia, Times New Roman, Times, serif"},b=["0.75rem","0.875rem","1rem","1.125rem","1.25rem","1.5rem","1.75rem","2rem","2.25rem","2.625rem","3rem","3.375rem","3.75rem","4.25rem","4.75rem","5.25rem","5.75rem"],i={body:400,semiBold:600,bold:700,extraBold:800,heading:700},d={normal:"normal",tracked:"0.075em",tight:"-0.015em"},l={solid:1,dense:1.25,heading:1.25,default:1.5,body:1.5,loose:1.75},n={};for(var p in a)n[p]="@media (min-width: "+a[p]+")";var m=n,c=[0,"2px","4px","8px","16px","9999px","100%"],g={raised:"0px 1px 2px rgba(46, 41, 51, 0.08), 0px 2px 4px rgba(71, 63, 79, 0.08)",floating:"0px 2px 4px rgba(46, 41, 51, 0.08), 0px 4px 8px rgba(71, 63, 79, 0.16)",overlay:"0px 4px 8px rgba(46, 41, 51, 0.08), 0px 8px 16px rgba(71, 63, 79, 0.16)",dialog:"0px 4px 16px rgba(46, 41, 51, 0.08), 0px 8px 24px rgba(71, 63, 79, 0.16)"},x=["0rem","0.25rem","0.5rem","0.75rem","1rem","1.25rem","1.5rem","2rem","2.5rem","3rem","3.5rem","4rem","4.5rem"],u={default:"250ms cubic-bezier(0.4, 0, 0.2, 1)",curve:{default:"cubic-bezier(0.4, 0, 0.2, 1)",fastOutLinearIn:"cubic-bezier(0.4, 0, 1, 1)"},speed:{faster:"50ms",fast:"100ms",default:"250ms",slow:"500ms",slower:"1000ms"}},S=e({},t,{text:t.grey[80],background:t.white,primary:t.gatsby,secondary:t.purple[40],accent:t.orange[60],muted:t.grey[5],heading:t.text.header,textMuted:t.text.secondary}),y={breakpoints:f,colors:S,fonts:s,fontSizes:b,fontWeights:i,letterSpacings:d,lineHeights:l,mediaQueries:m,radii:c,shadows:g,space:x,transition:u};exports.breakpoints=f,exports.colors=S,exports.fontSizes=b,exports.fontWeights=i,exports.fonts=s,exports.letterSpacings=d,exports.lineHeights=l,exports.mediaQueries=m,exports.radii=c,exports.shadows=g,exports.space=x,exports.theme=y,exports.transition=u; |
{ | ||
"name": "gatsby-design-tokens", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Gatsby Design Tokens", | ||
@@ -37,3 +37,3 @@ "main": "dist/index.js", | ||
}, | ||
"gitHead": "535e76e8480d82380600ffd119b18be835cad804" | ||
"gitHead": "3197b6965106d7a1ca1ec0a6af9788f3ceab14f2" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
79677
215