From ba9943cb3430e3b53bc50642f544174ef248b7a8 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sat, 21 May 2022 13:03:16 -0500 Subject: [PATCH] feat(latte): updated rosewater, blue, pink and yellow --- README.md | 6 +++--- index.js | 26 ++++++++++++-------------- package.json | 2 +- 3 files changed, 16 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index a3a22aa..b81dc00 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,8 @@ Example: `test.js` ```js import {variants, labels} from '@catppuccin/palette' -console.log(variants.latte.lavender) // #7287FD -console.log(labels.base.macchiato) // #24273A +console.log(variants.latte.lavender.hex) // #7287FD +console.log(labels.base.macchiato.hex) // #24273A ``` ### CSS @@ -49,7 +49,7 @@ console.log(labels.base.macchiato) // #24273A Example: `test.css` ```css -@import url('https://unpkg.com/@catppuccin/palette@0.1.0/css/catppuccin.css'); +@import url('https://unpkg.com/@catppuccin/palette@0.1.1/css/catppuccin.css'); body { color: var(--ctp-mocha-text); diff --git a/index.js b/index.js index 781953f..7aad6fd 100644 --- a/index.js +++ b/index.js @@ -1,10 +1,8 @@ -// catppuccin palettes - const latte = { rosewater: { - hex: '#de9584', - rgb: 'rgb(222, 149, 132)', - hsl: 'hsl(11, 58%, 69%)', + hex: '#dc8a78', + rgb: 'rgb(220, 138, 120)', + hsl: 'hsl(11, 59%, 67%)', }, flamingo: { @@ -14,9 +12,9 @@ const latte = { }, pink: { - hex: '#ec83d0', - rgb: 'rgb(236, 131, 208)', - hsl: 'hsl(316, 73%, 72%)', + hex: '#ea76cb', + rgb: 'rgb(234, 118, 203)', + hsl: 'hsl(316, 73%, 69%)', }, mauve: { @@ -44,9 +42,9 @@ const latte = { }, yellow: { - hex: '#e49320', - rgb: 'rgb(228, 147, 32)', - hsl: 'hsl(35, 78%, 51%)', + hex: '#df8e1d', + rgb: 'rgb(223, 142, 29)', + hsl: 'hsl(35, 77%, 49%)', }, green: { @@ -74,9 +72,9 @@ const latte = { }, blue: { - hex: '#2a6ef5', - rgb: 'rgb(42, 110, 245)', - hsl: 'hsl(220, 91%, 56%)', + hex: '#1e66f5', + rgb: 'rgb(30, 102, 245)', + hsl: 'hsl(220, 91%, 54%)', }, lavender: { diff --git a/package.json b/package.json index 8835aa7..b52a0ec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@catppuccin/palette", - "version": "0.1.0", + "version": "0.1.1", "description": "Soothing pastel themes for the high-spirited!", "main": "index.js", "type": "module",