import { Meta } from "@storybook/addon-docs";
import Code from "./assets/code-brackets.svg";
import Colors from "./assets/colors.svg";
import Comments from "./assets/comments.svg";
import Direction from "./assets/direction.svg";
import Flow from "./assets/flow.svg";
import Plugin from "./assets/plugin.svg";
import Repo from "./assets/repo.svg";
import StackAlt from "./assets/stackalt.svg";

<Meta title="Resources/CSS CDN" />

<style>{`

  .available-themes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4);
  }
  .available-theme {
    padding: var(--spacing-4);
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 4px;
    box-shadow: rgb(0 0 0 / 10%) 0 1px 3px 0;
  }
  .available-theme-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .available-theme-colors {
    display: flex;
    gap: var(--spacing-1);
    margin-top: var(--spacing-4);
    padding-left: var(--spacing-2);
  }
  .available-theme-colors > div {
    height: var(--spacing-6);
    width: var(--spacing-6);
    border-radius: var(--radius-full);
    margin-left: -8px;
  }
  .subheading {
    --mediumdark: '#999999';
    font-weight: 900;
    font-size: 14px;
    color: #999;
    letter-spacing: 1.5px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: 40px;
  }

  .link-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 10px;
  }

  @media (min-width: 620px) {
    .link-list {
      row-gap: 20px;
      column-gap: 20px;
      grid-template-columns: 1fr 1fr;
    }
  }

  @media all and (-ms-high-contrast:none) {
  .link-list {
      display: -ms-grid;
      -ms-grid-columns: 1fr 1fr;
      -ms-grid-rows: 1fr 1fr;
    }
  }

  .link-item {
    display: block;
    padding: 20px 30px 20px 15px;
    border: 1px solid #00000010;
    border-radius: 5px;
    transition: background 150ms ease-out, border 150ms ease-out, transform 150ms ease-out;
    color: #333333;
    display: flex;
    align-items: flex-start;
  }

  .link-item:hover {
    border-color: #1EA7FD50;
    transform: translate3d(0, -3px, 0);
    box-shadow: rgba(0, 0, 0, 0.08) 0 3px 10px 0;
  }

  .link-item:active {
    border-color: #1EA7FD;
    transform: translate3d(0, 0, 0);
  }

  .link-item strong {
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
  }
  
  .link-item img {
    height: 40px;
    width: 40px;
    margin-right: 15px;
    flex: none;
  }

  .link-item span {
    font-size: 14px;
    line-height: 20px;
  }

  .tip {
    display: inline-block;
    border-radius: 1em;
    font-size: 11px;
    line-height: 12px;
    font-weight: 700;
    background: #E7FDD8;
    color: #66BF3C;
    padding: 4px 12px;
    margin-right: 10px;
    vertical-align: top;
  }

  .tip-wrapper {
    font-size: 13px;
    line-height: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .tip-wrapper code {
    font-size: 12px;
    display: inline-block;
  }

  
`}</style>

# CSS Library

In some cases developers might want to use the tokens outside of Vue, for example Rails. So we're providing a simple CSS file served from a CDN where developers can access all Luminary tokens.

### CDN version includes the following:

- CSS Reset (modern-normalize)
- [Animation tokens](/docs/tokens-animation--page)
- [Spacing tokens](/docs/tokens-spacing--page)
- [Radius tokens](/docs/tokens-radius--page)
- [Grid tokens](/docs/tokens-grid--page)
- [Layer tokens](/docs/tokens-layers--page)
- [Shadow tokens](/docs/tokens-shadows--page)
- [Font Sizing tokens](/docs/tokens-font-size--page)
- [Airpool & Stream theme tokens (colour tokens)](/docs/tokens-color--page)
- Font tokens (fonts will be set based on the theme)

<div className="subheading">
  Add the CSS library to your project with a stylesheet tag
</div>

```
<link rel="stylesheet" href="https://unpkg.com/luminary/full.css">
```

<div className="subheading">Set the app theme to body/container</div>

Two themes are currently available:

<div class="available-themes">
  <div class="available-theme">
    <div class="available-theme-heading theme-airpool">
      Airpool <code>theme-airpool</code>
    </div>
    <div class="available-theme-colors">
      <div style={{ backgroundColor: "var(--primary-500)" }}></div>
      <div style={{ backgroundColor: "var(--secondary-500)" }}></div>
      <div style={{ backgroundColor: "var(--neutral-100)" }}></div>
    </div>
  </div>
  <div class="available-theme theme-stream">
    <div class="available-theme-heading">
      Stream <code>theme-stream</code>
    </div>
    <div class="available-theme-colors">
      <div style={{ backgroundColor: "var(--primary-500)" }}></div>
      <div style={{ backgroundColor: "var(--secondary-500)" }}></div>
      <div style={{ backgroundColor: "var(--neutral-100)" }}></div>
    </div>
  </div>
</div>

Example

```
<body class="theme-airpool" />
```
