Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
.. image:: docs/source/_static/image/readme_palette_picker.png :width: 800px
colorir is a package used to create and manipulate color palettes.
It is very easy to create an original and attractive color palette with colorir:
.. code-block:: python
import colorir as cl
grad = cl.PolarGrad(["ffff00", "ff00ff"]) # Creates a gradient from yellow to magenta
palette = cl.StackPalette(grad.n_colors(5)) # Samples 5 colors along the gradient and creates a palette with them
palette *= cl.HCLab(1, 0.5, 1) # Desaturates the palette 50% to get a more pleasing look
cl.swatch(palette) # Shows the palette we created in the terminal
.. image:: docs/source/_static/image/readme_palette.png
colorir also works seamlessly with other python packages and you don't have to convert colorir objects to pass them as input to other frameworks:
.. code-block:: python
import matplotlib.pyplot as plt
plt.pie([0.25, 0.15, 0.20, 0.20, 0.20], colors=palette)
plt.show()
.. image:: docs/source/_static/image/readme_pie_chart.png :width: 300px
For more information (including use-cases and examples), see colorir's documentation here <https://colorir.readthedocs.io/en/latest/>
_.
FAQs
A python package for easy management of colors and palettes.
We found that colorir demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.