Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
ARc theming utilities and resources
$ npm install --save arc-theme
get
and getColor
use lodash's get
to reach the theme path.
import theme, { get, getColor } from 'arc-theme'
console.log(theme) // outputs the entire theme object
get('colors') // outputs { primary: [...], secondary: [...] }
get('colors.primary') // outputs ['#1976d2', '#2196f3', '#71bcf7', '#c2e2fb']
get('reverseColors.primary') // outputs ['#c2e2fb', '#71bcf7', '#2196f3', '#1976d2']
get('colors.primary[0]') // outputs '#1976d2'
get('fonts') // outputs { primary: '...', quote: '...' }
get('fonts.primary') // outputs 'Helvetica Neue, Helvetica, Roboto, sans-serif'
getColor('primary') // outputs theme.colors.primary
getColor('primary[0]', true) // outputs theme.reverseColors.primary[0]
You can also provide your theme as the last argument.
import { get, getColor, reverse } from 'arc-theme'
const myTheme = {}
myTheme.colors = {
grayscale: ['#222', '#555', '#888', '#bbb', '#fff']
}
myTheme.reverseColors = reverse(myTheme.colors)
get('colors', myTheme) // outputs { grayscale: [...] }
get('colors.primary', myTheme) // outputs arc-theme primary color
get('fonts.primary', myTheme) // outputs arc-theme primary font
getColor('grayscale', false, myTheme) // outputs myTheme.colors.grayscale
getColor('grayscale[0]', true, myTheme) // outputs myTheme.reverseColors.grayscale[0]
getColor('primary[0]', true, myTheme) // outputs theme.reverseColors.primary[0]
Returns the value from anotherTheme[path]
or theme[path]
Returns the value from anotherTheme.colors[path]
or theme.colors[path]
. colors
will be reverseColors
if reverse
is true
.
Returns a new object with reverse colors.
colors
must be an object with the following structure:
const colors = {
foo: ['bar', 'baz'],
a: ['b', 'c']
}
reverse(colors) // { foo: ['baz', 'bar'], a: ['c', 'b'] }
MIT © Diego Haz
FAQs
ARc theming utilities and resources
The npm package arc-theme receives a total of 1 weekly downloads. As such, arc-theme popularity was classified as not popular.
We found that arc-theme demonstrated a not healthy version release cadence and project activity because the last version was released 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.