Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@evidence-dev/tailwind

Package Overview
Dependencies
Maintainers
5
Versions
310
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evidence-dev/tailwind - npm Package Compare versions

Comparing version 0.0.0-84cf5211 to 0.0.0-854e2246

fonts.css

41

CHANGELOG.md
# @evidence-dev/tailwind
## 2.1.0
### Minor Changes
- ca3e593b: - Updated major dependencies (Svelte, SvelteKit, Vite) to improve memory usage when building
## 2.0.0
### Minor Changes
- f051417f: add `fonts.css` export for new fonts
### Patch Changes
- bf4a112a: Update package.json to use new datasource field
- 20127231: Bump all versions so version pinning works
## 1.0.0-usql.3
### Patch Changes
- Update package.json to use new datasource field
## 1.0.0-usql.2
### Patch Changes
- 20127231: Bump all versions so version pinning works
## 1.0.0-usql.1
### Minor Changes
- f051417f: add `fonts.css` export for new fonts
## 1.1.0
### Minor Changes
- 9b8346f0: update core layout, tailwind config, align components to new layout, deprecate sticky alert
## 1.0.0

@@ -4,0 +45,0 @@

109

index.js
export const colors = {
blue: {
100: 'hsl(202, 100%, 95%, <alpha-value>)',
200: 'hsl(204, 100%, 85%, <alpha-value>)',
300: 'hsl(206, 95%, 72%, <alpha-value>)',
400: 'hsl(208, 90%, 63%, <alpha-value>)',
500: 'hsl(210, 85%, 54%, <alpha-value>)',
600: 'hsl(212, 96%, 44%, <alpha-value>)',
700: 'hsl(214, 98%, 38%, <alpha-value>)',
800: 'hsl(217, 98%, 33%, <alpha-value>)',
900: 'hsl(220, 99%, 24%, <alpha-value>)',
999: 'hsl(222, 100%, 18%, <alpha-value>)',
link: 'hsl(205, 62%, 38%, <alpha-value>)'
},
green: {
100: 'hsl(167, 100%, 94%, <alpha-value>)',
200: 'hsl(166, 100%, 87%, <alpha-value>)',
300: 'hsl(163, 93%, 76%, <alpha-value>)',
400: 'hsl(161, 90%, 63%, <alpha-value>)',
500: 'hsl(159, 88%, 44%, <alpha-value>)',
600: 'hsl(158, 91%, 35%, <alpha-value>)',
700: 'hsl(156, 93%, 28%, <alpha-value>)',
800: 'hsl(154, 95%, 23%, <alpha-value>)',
900: 'hsl(152, 100%, 18%, <alpha-value>)',
999: 'hsl(150, 100%, 14%, <alpha-value>)'
},
grey: {
100: 'hsl(217, 33%, 97%, <alpha-value>)',
200: 'hsl(215, 15%, 91%, <alpha-value>)',
300: 'hsl(211, 16%, 82%, <alpha-value>)',
400: 'hsl(212, 13%, 65%, <alpha-value>)',
500: 'hsl(212, 10%, 53%, <alpha-value>)',
600: 'hsl(212, 12%, 43%, <alpha-value>)',
700: 'hsl(210, 14%, 37%, <alpha-value>)',
800: 'hsl(210, 18%, 30%, <alpha-value>)',
900: 'hsl(210, 20%, 25%, <alpha-value>)',
999: 'hsl(211, 24%, 16%, <alpha-value>)'
},
red: {
50: '#fdf1f1',
100: 'hsl(0, 100%, 95%, <alpha-value>)',
200: 'hsl(0, 100%, 87%, <alpha-value>)',
300: 'hsl(0, 100%, 80%, <alpha-value>)',
400: 'hsl(0, 91%, 69%, <alpha-value>)',
500: 'hsl(0, 83%, 62%, <alpha-value>)',
600: 'hsl(356, 75%, 53%, <alpha-value>)',
700: 'hsl(354, 85%, 44%, <alpha-value>)',
800: 'hsl(352, 90%, 35%, <alpha-value>)',
900: 'hsl(350, 94%, 28%, <alpha-value>)',
999: 'hsl(348, 94%, 20%, <alpha-value>)'
},
yellow: {
100: 'hsl(49, 100%, 96%, <alpha-value>)',
200: 'hsl(48, 100%, 88%, <alpha-value>)',
300: 'hsl(48, 95%, 76%, <alpha-value>)',
400: 'hsl(48, 94%, 68%, <alpha-value>)',
500: 'hsl(44, 92%, 63%, <alpha-value>)',
600: 'hsl(42, 87%, 55%, <alpha-value>)',
700: 'hsl(36, 77%, 49%, <alpha-value>)',
800: 'hsl(29, 80%, 44%, <alpha-value>)',
900: 'hsl(22, 82%, 39%, <alpha-value>)',
999: 'hsl(15, 86%, 30%, <alpha-value>)'
},
color: {

@@ -88,2 +26,4 @@ 1: '#923d59',

const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */

@@ -95,36 +35,17 @@ export const config = {

fontFamily: {
monospace: [
'Menlo',
'Monaco',
'"Lucida Console"',
'"Liberation Mono"',
'"DejaVu Sans Mono"',
'"Bitstream Vera Sans Mono"',
'"Courier New"',
'monospace'
sans: [
`Inter, ${defaultTheme.fontFamily.sans}`,
{
// open fours by default
fontFeatureSettings: '"cv02"'
}
],
ui: [
'"SF Display"',
'-apple-system',
'BlinkMacSystemFont',
'Roboto',
'Helvetica',
'Arial',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"'
serif: [
`Spectral, ${defaultTheme.fontFamily.serif}`,
{
// proportional oldstyle figures by default
fontFeatureSettings: '"pnum", "onum"'
}
],
ui_compact: [
'"SF Compact Display"',
'-apple-system',
'BlinkMacSystemFont',
'Roboto',
'Helvetica',
'Arial',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"'
]
mono: [`'Menlo', 'Monaco', ${defaultTheme.fontFamily.mono}`]
},

@@ -131,0 +52,0 @@ textShadow: {

{
"name": "@evidence-dev/tailwind",
"version": "0.0.0-84cf5211",
"version": "0.0.0-854e2246",
"description": "",

@@ -10,3 +10,3 @@ "keywords": [],

"parcel": "^2.8.3",
"typescript": "^5.0.4"
"typescript": "5.4.2"
},

@@ -17,4 +17,8 @@ "dependencies": {

"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./fonts.css": "./fonts.css",
"./fonts/*": "./fonts/*"
},

@@ -21,0 +25,0 @@ "main": "dist/index.cjs",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc