mirror of
https://github.com/picocss/pico.git
synced 2025-04-27 11:36:14 -04:00
feat: add color utilities
This commit is contained in:
parent
1fc835eb2b
commit
19920bbe9b
13 changed files with 1286 additions and 50 deletions
47
scss/_index.scss
Normal file
47
scss/_index.scss
Normal file
|
@ -0,0 +1,47 @@
|
|||
@use "utils/copyright";
|
||||
|
||||
// Config
|
||||
@forward "settings";
|
||||
|
||||
// Theming
|
||||
@use "themes/default";
|
||||
|
||||
// Layout
|
||||
@use "layout/document"; // html
|
||||
@use "layout/landmarks"; // body, header, main, footer
|
||||
@use "layout/container"; // .container, .container-fluid
|
||||
@use "layout/section"; // section
|
||||
@use "layout/grid"; // .grid
|
||||
@use "layout/scroller"; // figure
|
||||
|
||||
// Content
|
||||
@use "content/link"; // a, role="link"
|
||||
@use "content/typography"; // headings, p, ul, blockquote, ...
|
||||
@use "content/embedded"; // audio, canvas, iframe, img, svg, video
|
||||
@use "content/button"; // button, a[role="button"], type="button", type="submit" ...
|
||||
@use "content/table"; // table, tr, td, ...
|
||||
@use "content/code"; // pre, code, ...
|
||||
@use "content/miscs"; // hr, template, [hidden], dialog, canvas
|
||||
|
||||
// Forms
|
||||
@use "forms/basics"; // input, select, textarea, label, fieldset, legend
|
||||
@use "forms/checkbox-radio-switch"; // type="checkbox", type="radio", role="switch"
|
||||
@use "forms/input-color"; // type="color"
|
||||
@use "forms/input-date"; // type="date", type="datetime-local", type="month", type="time", type="week"
|
||||
@use "forms/input-file"; // type="file"
|
||||
@use "forms/input-range"; // type="range"
|
||||
@use "forms/input-search"; // type="search"
|
||||
|
||||
// Components
|
||||
@use "components/accordion"; // details, summary
|
||||
@use "components/card"; // article
|
||||
@use "components/dropdown"; // dropdown
|
||||
@use "components/loading"; // aria-busy=true
|
||||
@use "components/modal"; // dialog
|
||||
@use "components/nav"; // nav
|
||||
@use "components/progress"; // progress
|
||||
@use "components/tooltip"; // data-tooltip
|
||||
|
||||
// Utilities
|
||||
@use "utilities/accessibility"; // -ms-touch-action, aria-*
|
||||
@use "utilities/reduce-motion"; // prefers-reduced-motion
|
Loading…
Add table
Add a link
Reference in a new issue