A friendly style library


Keywords
css, sass, eku, library, framework, scss
License
MIT
Install
npm install eku@0.6.2-beta.1

Documentation

Eku

Eku is a friendly, lightful and highly customizable css library to make modern and beaty web pages, applications and so much more; using the latest modern utilities to save time and apply useful styles.

Usage

To use the eku library, you must link in the head section of your HTML page the link below.

<link rel="stylesheet" href="https://unpkg.com/eku" />

Also, you can use the minified version, but it doesnt have a source map, is only for production or optimization purposes.

<link rel="stylesheet" href="https://unpkg.com/eku@latest/css/eku.min.css" />

If you have a Node.js project, you can install it from npm or yarn using the commands below.

npm i eku
yarn add eku

Theming

You can customize all the variables available using on a scss file when you import the library.

@use "eku" with (
    $primary: "#222",
    $text-family: "Poppins"
);

Can i import just atoms? YES, you can.

Even you can import only what you wanna get.

// CUSTOMIZE

@use "eku/variables" with (
    $primary: "#222",
    $text-family: "Poppins"
);

// IMPORT THEM!

@use "eku/atoms/all";
@use "eku/layout/dashboard.scss";
@use "eku/layout/container.scss";

Code by @adwher