mirror of
https://github.com/vacp2p/vac.dev-experimental-old.git
synced 2025-01-27 05:55:37 +00:00
Update to Tailwind v0.4.0
This commit is contained in:
parent
a56aeaebe8
commit
ae3ab60fce
@ -1,5 +1,5 @@
|
||||
# Tailwind Jekyll Starter
|
||||
A starter kit for using [Tailwind](https://tailwindcss.com) (v0.3.0) with [Jekyll](https://jekyllrb.com/) that includes:
|
||||
A starter kit for using [Tailwind](https://tailwindcss.com) (v0.4.0) with [Jekyll](https://jekyllrb.com/) that includes:
|
||||
* A barebones Jekyll starter theme
|
||||
* A Gulp file with a default task that does the following:
|
||||
|
||||
|
4690
package-lock.json
generated
4690
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
11
package.json
11
package.json
@ -2,7 +2,7 @@
|
||||
"name": "tailwind-jekyll",
|
||||
"version": "1.0.0",
|
||||
"description": "A starter kit for using Tailwind with Jekyll",
|
||||
"main": "tailwind.js",
|
||||
"main": "gulpfile.js",
|
||||
"devDependencies": {
|
||||
"browser-sync": "^2.18.13",
|
||||
"gulp": "^3.9.1",
|
||||
@ -11,7 +11,7 @@
|
||||
"gulp-postcss": "^7.0.0",
|
||||
"gulp-util": "^3.0.8",
|
||||
"postcss-import": "^11.0.0",
|
||||
"tailwindcss": "^0.3.0"
|
||||
"tailwindcss": "^0.4.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
@ -19,11 +19,6 @@
|
||||
"author": "Taylor Bryant",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"array-slice": "^1.1.0",
|
||||
"commander": "^2.12.2",
|
||||
"connect-history-api-fallback": "^1.5.0",
|
||||
"immutable": "^3.8.2",
|
||||
"ini": "^1.3.5",
|
||||
"interpret": "^1.1.0"
|
||||
"ajv-keywords": "^2.1.1"
|
||||
}
|
||||
}
|
||||
|
@ -6,7 +6,7 @@
|
||||
* https://github.com/tailwindcss/tailwindcss/blob/master/css/preflight.css
|
||||
*
|
||||
* If using `postcss-import`, you should import this line from it's own file:
|
||||
*
|
||||
*
|
||||
* @import "./tailwind-preflight.css";
|
||||
*
|
||||
* See: https://github.com/tailwindcss/tailwindcss/issues/53#issuecomment-341413622
|
||||
@ -34,7 +34,7 @@
|
||||
* config file.
|
||||
*
|
||||
* If using `postcss-import`, you should import this line from it's own file:
|
||||
*
|
||||
*
|
||||
* @import "./tailwind-utilities.css";
|
||||
*
|
||||
* See: https://github.com/tailwindcss/tailwindcss/issues/53#issuecomment-341413622
|
||||
|
46
tailwind.js
46
tailwind.js
@ -24,7 +24,7 @@ View the full documentation at https://tailwindcss.com.
|
||||
|
|
||||
*/
|
||||
|
||||
var defaultConfig = require('tailwindcss/defaultConfig')()
|
||||
let defaultConfig = require('tailwindcss/defaultConfig')()
|
||||
|
||||
|
||||
/*
|
||||
@ -43,29 +43,29 @@ var defaultConfig = require('tailwindcss/defaultConfig')()
|
||||
|
|
||||
*/
|
||||
|
||||
var colors = {
|
||||
let colors = {
|
||||
'transparent': 'transparent',
|
||||
|
||||
'black': '#222b2f',
|
||||
'grey-darkest': '#364349',
|
||||
'grey-darker': '#596a73',
|
||||
'grey-dark': '#70818a',
|
||||
'grey': '#9babb4',
|
||||
'grey-light': '#dae4e9',
|
||||
'grey-lighter': '#f3f7f9',
|
||||
'grey-lightest': '#fafcfc',
|
||||
'black': '#22292f',
|
||||
'grey-darkest': '#3d4852',
|
||||
'grey-darker': '#606f7b',
|
||||
'grey-dark': '#8795a1',
|
||||
'grey': '#b8c2cc',
|
||||
'grey-light': '#dae1e7',
|
||||
'grey-lighter': '#f1f5f8',
|
||||
'grey-lightest': '#f8fafc',
|
||||
'white': '#ffffff',
|
||||
|
||||
'red-darkest': '#420806',
|
||||
'red-darker': '#6a1b19',
|
||||
'red-darkest': '#3b0d0c',
|
||||
'red-darker': '#621b18',
|
||||
'red-dark': '#cc1f1a',
|
||||
'red': '#e3342f',
|
||||
'red-light': '#ef5753',
|
||||
'red-lighter': '#f9acaa',
|
||||
'red-lightest': '#fcebea',
|
||||
|
||||
'orange-darkest': '#542605',
|
||||
'orange-darker': '#7f4012',
|
||||
'orange-darkest': '#462a16',
|
||||
'orange-darker': '#613b1f',
|
||||
'orange-dark': '#de751f',
|
||||
'orange': '#f6993f',
|
||||
'orange-light': '#faad63',
|
||||
@ -80,8 +80,8 @@ var colors = {
|
||||
'yellow-lighter': '#fff9c2',
|
||||
'yellow-lightest': '#fcfbeb',
|
||||
|
||||
'green-darkest': '#032d19',
|
||||
'green-darker': '#0b4228',
|
||||
'green-darkest': '#0f2f21',
|
||||
'green-darker': '#1a4731',
|
||||
'green-dark': '#1f9d55',
|
||||
'green': '#38c172',
|
||||
'green-light': '#51d88a',
|
||||
@ -89,15 +89,15 @@ var colors = {
|
||||
'green-lightest': '#e3fcec',
|
||||
|
||||
'teal-darkest': '#0d3331',
|
||||
'teal-darker': '#174e4b',
|
||||
'teal-darker': '#20504f',
|
||||
'teal-dark': '#38a89d',
|
||||
'teal': '#4dc0b5',
|
||||
'teal-light': '#64d5ca',
|
||||
'teal-lighter': '#a0f0ed',
|
||||
'teal-lightest': '#e8fffe',
|
||||
|
||||
'blue-darkest': '#05233b',
|
||||
'blue-darker': '#103d60',
|
||||
'blue-darkest': '#12283a',
|
||||
'blue-darker': '#1c3d5a',
|
||||
'blue-dark': '#2779bd',
|
||||
'blue': '#3490dc',
|
||||
'blue-light': '#6cb2eb',
|
||||
@ -112,16 +112,16 @@ var colors = {
|
||||
'indigo-lighter': '#b2b7ff',
|
||||
'indigo-lightest': '#e6e8ff',
|
||||
|
||||
'purple-darkest': '#1f133f',
|
||||
'purple-darker': '#352465',
|
||||
'purple-darkest': '#21183c',
|
||||
'purple-darker': '#382b5f',
|
||||
'purple-dark': '#794acf',
|
||||
'purple': '#9561e2',
|
||||
'purple-light': '#a779e9',
|
||||
'purple-lighter': '#d6bbfc',
|
||||
'purple-lightest': '#f3ebff',
|
||||
|
||||
'pink-darkest': '#45051e',
|
||||
'pink-darker': '#72173a',
|
||||
'pink-darkest': '#451225',
|
||||
'pink-darker': '#6f213f',
|
||||
'pink-dark': '#eb5286',
|
||||
'pink': '#f66d9b',
|
||||
'pink-light': '#fa7ea8',
|
||||
|
Loading…
x
Reference in New Issue
Block a user