├── .firebaserc ├── .github └── workflows │ ├── firebase-hosting-merge.yml │ ├── firebase-hosting-pull-request.yml │ ├── main.yml │ └── tests.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── docsite ├── .gitignore ├── color-copy.css ├── index.css ├── index.html ├── index.js ├── js │ ├── animations.js │ ├── brand-colors.js │ ├── color-convert.js │ ├── color-copy.js │ ├── easing.js │ ├── scrollspy.js │ ├── select.js │ └── slider.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── adaptive-buttons.png │ ├── apple-touch-icon.png │ ├── cards.png │ ├── color-schemes.png │ ├── favicon.ico │ ├── favicon.svg │ ├── hero-layout.png │ ├── icon-192-maskable.png │ ├── icon-192.png │ ├── icon-512-maskable.png │ ├── icon-512.png │ ├── manifest.json │ ├── normalize-codepen.png │ ├── open-props-social.jpg │ ├── pagination.png │ ├── pop-animation.png │ ├── theme-switch.png │ └── theme-toggle.js └── syntax-highlight.css ├── firebase.json ├── package.json ├── postcss.config.cjs ├── readme.md ├── src ├── extra │ ├── brand.css │ ├── buttons.css │ ├── buttons.dark.css │ ├── buttons.light.css │ ├── durations.css │ ├── normalize.css │ ├── normalize.dark.css │ ├── normalize.light.css │ ├── normalize.src.css │ ├── theme.css │ ├── theme.dark.css │ ├── theme.dark.switch.css │ ├── theme.light.css │ ├── theme.light.switch.css │ └── utilities.css ├── index.css ├── index.js ├── props.animations.css ├── props.animations.js ├── props.aspects.css ├── props.aspects.js ├── props.blue-hsl.css ├── props.blue.css ├── props.borders.css ├── props.borders.js ├── props.brand-colors.css ├── props.brand-colors.js ├── props.brown-hsl.css ├── props.brown.css ├── props.camo-hsl.css ├── props.camo.css ├── props.choco-hsl.css ├── props.choco.css ├── props.colors-hsl.css ├── props.colors-hsl.js ├── props.colors-oklch-hues.css ├── props.colors-oklch-hues.js ├── props.colors-oklch.css ├── props.colors-oklch.js ├── props.colors.css ├── props.colors.js ├── props.colors.src.js ├── props.cyan-hsl.css ├── props.cyan.css ├── props.easing.css ├── props.easing.js ├── props.fonts.css ├── props.fonts.js ├── props.gradients.css ├── props.gradients.js ├── props.gradients.src.js ├── props.gray-hsl.css ├── props.gray-oklch.css ├── props.gray-oklch.js ├── props.gray.css ├── props.green-hsl.css ├── props.green.css ├── props.highlights.css ├── props.indigo-hsl.css ├── props.indigo.css ├── props.jungle-hsl.css ├── props.jungle.css ├── props.layouts.css ├── props.lime-hsl.css ├── props.lime.css ├── props.masks.corner-cuts.css ├── props.masks.corner-cuts.js ├── props.masks.edges.css ├── props.masks.edges.js ├── props.media.css ├── props.media.js ├── props.orange-hsl.css ├── props.orange.css ├── props.pink-hsl.css ├── props.pink.css ├── props.purple-hsl.css ├── props.purple.css ├── props.red-hsl.css ├── props.red.css ├── props.sand-hsl.css ├── props.sand.css ├── props.shadows.css ├── props.shadows.js ├── props.sizes.css ├── props.sizes.js ├── props.stone-hsl.css ├── props.stone.css ├── props.supports.css ├── props.svg.css ├── props.svg.js ├── props.teal-hsl.css ├── props.teal.css ├── props.violet-hsl.css ├── props.violet.css ├── props.yellow-hsl.css ├── props.yellow.css ├── props.zindex.css └── props.zindex.js ├── test └── basic.test.cjs └── tsconfig.json /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/.github/workflows/firebase-hosting-merge.yml -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/.github/workflows/firebase-hosting-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/LICENSE -------------------------------------------------------------------------------- /docsite/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | .cache/ 4 | dist/ 5 | node_modules/ -------------------------------------------------------------------------------- /docsite/color-copy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/color-copy.css -------------------------------------------------------------------------------- /docsite/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/index.css -------------------------------------------------------------------------------- /docsite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/index.html -------------------------------------------------------------------------------- /docsite/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/index.js -------------------------------------------------------------------------------- /docsite/js/animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/js/animations.js -------------------------------------------------------------------------------- /docsite/js/brand-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/js/brand-colors.js -------------------------------------------------------------------------------- /docsite/js/color-convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/js/color-convert.js -------------------------------------------------------------------------------- /docsite/js/color-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/js/color-copy.js -------------------------------------------------------------------------------- /docsite/js/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/js/easing.js -------------------------------------------------------------------------------- /docsite/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/js/scrollspy.js -------------------------------------------------------------------------------- /docsite/js/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/js/select.js -------------------------------------------------------------------------------- /docsite/js/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/js/slider.js -------------------------------------------------------------------------------- /docsite/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/package-lock.json -------------------------------------------------------------------------------- /docsite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/package.json -------------------------------------------------------------------------------- /docsite/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/postcss.config.js -------------------------------------------------------------------------------- /docsite/public/adaptive-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/adaptive-buttons.png -------------------------------------------------------------------------------- /docsite/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/apple-touch-icon.png -------------------------------------------------------------------------------- /docsite/public/cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/cards.png -------------------------------------------------------------------------------- /docsite/public/color-schemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/color-schemes.png -------------------------------------------------------------------------------- /docsite/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/favicon.ico -------------------------------------------------------------------------------- /docsite/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/favicon.svg -------------------------------------------------------------------------------- /docsite/public/hero-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/hero-layout.png -------------------------------------------------------------------------------- /docsite/public/icon-192-maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/icon-192-maskable.png -------------------------------------------------------------------------------- /docsite/public/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/icon-192.png -------------------------------------------------------------------------------- /docsite/public/icon-512-maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/icon-512-maskable.png -------------------------------------------------------------------------------- /docsite/public/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/icon-512.png -------------------------------------------------------------------------------- /docsite/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/manifest.json -------------------------------------------------------------------------------- /docsite/public/normalize-codepen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/normalize-codepen.png -------------------------------------------------------------------------------- /docsite/public/open-props-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/open-props-social.jpg -------------------------------------------------------------------------------- /docsite/public/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/pagination.png -------------------------------------------------------------------------------- /docsite/public/pop-animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/pop-animation.png -------------------------------------------------------------------------------- /docsite/public/theme-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/theme-switch.png -------------------------------------------------------------------------------- /docsite/public/theme-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/public/theme-toggle.js -------------------------------------------------------------------------------- /docsite/syntax-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/docsite/syntax-highlight.css -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/readme.md -------------------------------------------------------------------------------- /src/extra/brand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/brand.css -------------------------------------------------------------------------------- /src/extra/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/buttons.css -------------------------------------------------------------------------------- /src/extra/buttons.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/buttons.dark.css -------------------------------------------------------------------------------- /src/extra/buttons.light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/buttons.light.css -------------------------------------------------------------------------------- /src/extra/durations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/durations.css -------------------------------------------------------------------------------- /src/extra/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/normalize.css -------------------------------------------------------------------------------- /src/extra/normalize.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/normalize.dark.css -------------------------------------------------------------------------------- /src/extra/normalize.light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/normalize.light.css -------------------------------------------------------------------------------- /src/extra/normalize.src.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/normalize.src.css -------------------------------------------------------------------------------- /src/extra/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/theme.css -------------------------------------------------------------------------------- /src/extra/theme.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/theme.dark.css -------------------------------------------------------------------------------- /src/extra/theme.dark.switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/theme.dark.switch.css -------------------------------------------------------------------------------- /src/extra/theme.light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/theme.light.css -------------------------------------------------------------------------------- /src/extra/theme.light.switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/theme.light.switch.css -------------------------------------------------------------------------------- /src/extra/utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/extra/utilities.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/index.js -------------------------------------------------------------------------------- /src/props.animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.animations.css -------------------------------------------------------------------------------- /src/props.animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.animations.js -------------------------------------------------------------------------------- /src/props.aspects.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.aspects.css -------------------------------------------------------------------------------- /src/props.aspects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.aspects.js -------------------------------------------------------------------------------- /src/props.blue-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.blue-hsl.css -------------------------------------------------------------------------------- /src/props.blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.blue.css -------------------------------------------------------------------------------- /src/props.borders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.borders.css -------------------------------------------------------------------------------- /src/props.borders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.borders.js -------------------------------------------------------------------------------- /src/props.brand-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.brand-colors.css -------------------------------------------------------------------------------- /src/props.brand-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.brand-colors.js -------------------------------------------------------------------------------- /src/props.brown-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.brown-hsl.css -------------------------------------------------------------------------------- /src/props.brown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.brown.css -------------------------------------------------------------------------------- /src/props.camo-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.camo-hsl.css -------------------------------------------------------------------------------- /src/props.camo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.camo.css -------------------------------------------------------------------------------- /src/props.choco-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.choco-hsl.css -------------------------------------------------------------------------------- /src/props.choco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.choco.css -------------------------------------------------------------------------------- /src/props.colors-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.colors-hsl.css -------------------------------------------------------------------------------- /src/props.colors-hsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.colors-hsl.js -------------------------------------------------------------------------------- /src/props.colors-oklch-hues.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.colors-oklch-hues.css -------------------------------------------------------------------------------- /src/props.colors-oklch-hues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.colors-oklch-hues.js -------------------------------------------------------------------------------- /src/props.colors-oklch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.colors-oklch.css -------------------------------------------------------------------------------- /src/props.colors-oklch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.colors-oklch.js -------------------------------------------------------------------------------- /src/props.colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.colors.css -------------------------------------------------------------------------------- /src/props.colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.colors.js -------------------------------------------------------------------------------- /src/props.colors.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.colors.src.js -------------------------------------------------------------------------------- /src/props.cyan-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.cyan-hsl.css -------------------------------------------------------------------------------- /src/props.cyan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.cyan.css -------------------------------------------------------------------------------- /src/props.easing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.easing.css -------------------------------------------------------------------------------- /src/props.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.easing.js -------------------------------------------------------------------------------- /src/props.fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.fonts.css -------------------------------------------------------------------------------- /src/props.fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.fonts.js -------------------------------------------------------------------------------- /src/props.gradients.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.gradients.css -------------------------------------------------------------------------------- /src/props.gradients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.gradients.js -------------------------------------------------------------------------------- /src/props.gradients.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.gradients.src.js -------------------------------------------------------------------------------- /src/props.gray-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.gray-hsl.css -------------------------------------------------------------------------------- /src/props.gray-oklch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.gray-oklch.css -------------------------------------------------------------------------------- /src/props.gray-oklch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.gray-oklch.js -------------------------------------------------------------------------------- /src/props.gray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.gray.css -------------------------------------------------------------------------------- /src/props.green-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.green-hsl.css -------------------------------------------------------------------------------- /src/props.green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.green.css -------------------------------------------------------------------------------- /src/props.highlights.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.highlights.css -------------------------------------------------------------------------------- /src/props.indigo-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.indigo-hsl.css -------------------------------------------------------------------------------- /src/props.indigo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.indigo.css -------------------------------------------------------------------------------- /src/props.jungle-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.jungle-hsl.css -------------------------------------------------------------------------------- /src/props.jungle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.jungle.css -------------------------------------------------------------------------------- /src/props.layouts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.layouts.css -------------------------------------------------------------------------------- /src/props.lime-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.lime-hsl.css -------------------------------------------------------------------------------- /src/props.lime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.lime.css -------------------------------------------------------------------------------- /src/props.masks.corner-cuts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.masks.corner-cuts.css -------------------------------------------------------------------------------- /src/props.masks.corner-cuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.masks.corner-cuts.js -------------------------------------------------------------------------------- /src/props.masks.edges.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.masks.edges.css -------------------------------------------------------------------------------- /src/props.masks.edges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.masks.edges.js -------------------------------------------------------------------------------- /src/props.media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.media.css -------------------------------------------------------------------------------- /src/props.media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.media.js -------------------------------------------------------------------------------- /src/props.orange-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.orange-hsl.css -------------------------------------------------------------------------------- /src/props.orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.orange.css -------------------------------------------------------------------------------- /src/props.pink-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.pink-hsl.css -------------------------------------------------------------------------------- /src/props.pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.pink.css -------------------------------------------------------------------------------- /src/props.purple-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.purple-hsl.css -------------------------------------------------------------------------------- /src/props.purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.purple.css -------------------------------------------------------------------------------- /src/props.red-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.red-hsl.css -------------------------------------------------------------------------------- /src/props.red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.red.css -------------------------------------------------------------------------------- /src/props.sand-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.sand-hsl.css -------------------------------------------------------------------------------- /src/props.sand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.sand.css -------------------------------------------------------------------------------- /src/props.shadows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.shadows.css -------------------------------------------------------------------------------- /src/props.shadows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.shadows.js -------------------------------------------------------------------------------- /src/props.sizes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.sizes.css -------------------------------------------------------------------------------- /src/props.sizes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.sizes.js -------------------------------------------------------------------------------- /src/props.stone-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.stone-hsl.css -------------------------------------------------------------------------------- /src/props.stone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.stone.css -------------------------------------------------------------------------------- /src/props.supports.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.supports.css -------------------------------------------------------------------------------- /src/props.svg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.svg.css -------------------------------------------------------------------------------- /src/props.svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.svg.js -------------------------------------------------------------------------------- /src/props.teal-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.teal-hsl.css -------------------------------------------------------------------------------- /src/props.teal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.teal.css -------------------------------------------------------------------------------- /src/props.violet-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.violet-hsl.css -------------------------------------------------------------------------------- /src/props.violet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.violet.css -------------------------------------------------------------------------------- /src/props.yellow-hsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.yellow-hsl.css -------------------------------------------------------------------------------- /src/props.yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.yellow.css -------------------------------------------------------------------------------- /src/props.zindex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.zindex.css -------------------------------------------------------------------------------- /src/props.zindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/src/props.zindex.js -------------------------------------------------------------------------------- /test/basic.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/test/basic.test.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/argyleink/open-props/HEAD/tsconfig.json --------------------------------------------------------------------------------