minolith 0.0.18 → 0.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 mino.*
3
+ Copyright (c) 2024 minominolyly
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1 +1,70 @@
1
- # minolith
1
+ # minolith
2
+
3
+ [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/minominolyly/minolith/blob/main/LICENSE)
4
+ [![NPM Version](https://img.shields.io/npm/v/minolith)](https://www.npmjs.com/package/minolith)
5
+ [![npm downloads](https://img.shields.io/npm/dm/minolith)](https://www.npmjs.com/package/minolith)
6
+
7
+ ## Overview
8
+
9
+ minolith is an open-source sass library.
10
+
11
+ It uses `oklch()` to declare color palette.
12
+
13
+ If you want to use in React Project, you can use [react-minolith](https://github.com/minominolyly/react-minolith).
14
+
15
+ ## ⚠️Heed
16
+
17
+ minolith is still alpha.
18
+
19
+ ## Installation
20
+
21
+ ### Use minolith Sass library
22
+
23
+ #### Install the NPM package
24
+
25
+ minolith is available through npm.
26
+
27
+ ```shell
28
+ npm install minolith
29
+ ```
30
+
31
+ ### Use minolith CSS
32
+
33
+ #### From CDN
34
+
35
+ You can import the CSS file directly from unpkg.com
36
+
37
+ ```html
38
+ <link
39
+ rel="stylesheet"
40
+ type="text/css"
41
+ media="all"
42
+ href="https://unpkg.com/minolith/dist/css/minolith.min.css"
43
+ />
44
+ ```
45
+
46
+ If you need to use `utilities`, you can use `minolith-utilities.css`.
47
+
48
+ ```html
49
+ <link
50
+ rel="stylesheet"
51
+ type="text/css"
52
+ media="all"
53
+ href="https://unpkg.com/minolith/dist/css/minolith.min.css"
54
+ />
55
+ ```
56
+
57
+ If you don't need to use `color` and `utilities`, you can use `minolith-skelton.css`.
58
+
59
+ ```html
60
+ <link
61
+ rel="stylesheet"
62
+ type="text/css"
63
+ media="all"
64
+ href="https://unpkg.com/minolith/dist/css/minolith-skelton.min.css"
65
+ />
66
+ ```
67
+
68
+ ## License
69
+
70
+ This project is licensed under the terms of the [MIT license](https://github.com/minominolyly/minolith/blob/main/LICENSE).