Skip to content

Commit

Permalink
updating website logo and package license to be more free
Browse files Browse the repository at this point in the history
  • Loading branch information
OvidijusParsiunas committed Aug 21, 2023
1 parent d00b279 commit 9ac73fd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions npm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ CSS Filter Converter is a simple tool used for converting basic css color format
npm install css-filter-converter
```

If you want the capability to convert from filter to a basic color, please additionally install puppeteer by running the following command:
If you want the capability for converting from filter to a basic color, please additionally install puppeteer by running the following command:

```
npm install puppeteer
Expand Down Expand Up @@ -67,7 +67,7 @@ keywordToFilter('blue');
Options:
| Name | Values | Default value | Description |
| :---------: | :-: | :-: | :- |
| sheen | true/false | true | Reinforces the strength of resultant filter color by prepending the following properties 'brightness(0) saturate(100%)'. Recommended to leave enabled for SVG images. |
| sheen | true/false | true | Reinforces the strength of resultant filter color by prepending the following properties 'brightness(0) saturate(100%)'. Recommended to have enabled for SVG images. |

```js
hexToFilter('#69A1DE', { sheen: false });
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"css"
],
"author": "Ovidijus Parsiunas",
"license": "ISC",
"license": "MIT",
"bugs": {
"url": "https://github.com/OvidijusParsiunas/css-filter-converter/issues"
},
Expand Down
8 changes: 4 additions & 4 deletions website/src/components/header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ export default function Header() {
<div id="css-filter-converter-logo">
<div id="css-filter-converter-logo-container">
<div id="css-filter-converter-logo-text">
<span style={{ color: '#476595' }}>CSS</span>
<span style={{ marginLeft: 2, color: '#26416e' }}>Filter</span>
<span style={{ marginLeft: 1, color: '#1d3051' }}>Con</span>
<span>verter</span>
<span style={{ color: '#527ec4' }}>CSS</span>
<span style={{ marginLeft: 2, color: '#2e5eaa' }}>Filter</span>
<span style={{ marginLeft: 1, color: '#335b9e' }}>Con</span>
<span style={{ marginLeft: 1, color: '#274578' }}>verter</span>
</div>
<div id="css-filter-converter-logo-icon">
<CssFilterLogoIcon />
Expand Down
4 changes: 3 additions & 1 deletion website/src/components/header/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@

#css-filter-converter-logo-text {
font-family: 'Open Sans', sans-serif;
font-size: 21.5px;
font-size: 20.5px;
letter-spacing: 1px;
font-weight: 600;
transform: scale(0.94, 0.98);
float: left;
}
Expand Down

0 comments on commit 9ac73fd

Please sign in to comment.