bullet_train-themes-light 1.0.4 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db73d017500ddc303b078da842bfae143efe15c7dd02ed4b51945b7e002c779e
4
- data.tar.gz: 4cedaff618ff92f5688ae0f12f39831f0dd7e372b801dbe632dfe863eaf86d07
3
+ metadata.gz: f7b07d00515c14850ac5da528b5b26ce656fed8a0314aa3058d4cb60f17fd5d3
4
+ data.tar.gz: 594d6ed9181e26ce8a139ea7972eabc47d7e3beef048446c1b6a08e3b2239e8c
5
5
  SHA512:
6
- metadata.gz: c6ef410ac69fa8c9b48feefaa41267dcc5f98d0fe84ba26d518a097e612062e3a6404fa939efb27b4da8b2002db7ec6a670e8bede70b51978622d1c3aebc928f
7
- data.tar.gz: 07e9f1ce6ddfa4dedd864b2581420d6d18e8cdcda02788c8345f64e51e89175d3cd60a6a6f05e717c43e13ef3368a79a9aeea17153d177dde55d78f328f29a1b
6
+ metadata.gz: 218e25be28cf97c0c54639a16a22db3e52a9ec4d445a85c02cd78df4815952979a9256c6fc51e2aae6ac662ef89f11221aa3f07bfafd1abfcc0e78a246f1b914
7
+ data.tar.gz: 7f3fb2e4024eb6da1fd942c1ee2d383be45be6a79bc6e92fe98a9e29552c23e7f03e797ecd29e655ec115db145094ede9ef882d3764a4779381275c9fcff0538
File without changes
@@ -0,0 +1,3 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
@@ -1,7 +1,7 @@
1
1
  module BulletTrain
2
2
  module Themes
3
3
  module Light
4
- VERSION = "1.0.4"
4
+ VERSION = "1.0.7"
5
5
  end
6
6
  end
7
7
  end
@@ -0,0 +1,77 @@
1
+ const defaultTheme = require('tailwindcss/defaultTheme')
2
+ const colors = require('tailwindcss/colors')
3
+
4
+ module.exports = {
5
+ content: [
6
+ './app/views/**/*.html.erb',
7
+ './app/helpers/**/*.rb',
8
+ './app/assets/stylesheets/**/*.css',
9
+ './app/javascript/**/*.js'
10
+ ],
11
+ darkMode: 'media',
12
+ theme: {
13
+ extend: {
14
+ fontSize: {
15
+ 'xs': '.81rem',
16
+ },
17
+ colors: {
18
+ red: {
19
+ darker: '#652424',
20
+ DEFAULT: '#e86060',
21
+ light: '#ee8989',
22
+ },
23
+ yellow: {
24
+ darker: '#6e6446',
25
+ DEFAULT: '#fbe6a8',
26
+ light: '#fcedbe',
27
+ },
28
+ blue: {
29
+ light: '#95acff',
30
+ lightish: '#448eef',
31
+ DEFAULT: '#047bf8',
32
+ dark: '#0362c6',
33
+ darker: '#00369D',
34
+ },
35
+ green: {
36
+ darker: '#166e0c',
37
+ dark: '#1b850f',
38
+ DEFAULT: '#71c21a',
39
+ light: '#c5f0c0',
40
+ },
41
+ sealBlue: {
42
+ 100: '#232942',
43
+ 200: '#293145',
44
+ 300: '#2b344e',
45
+ 400: '#323c58',
46
+ 500: '#4D566F',
47
+ 600: '#777E94',
48
+ 700: '#9facc7',
49
+ 800: '#b3bcde',
50
+ 900: '#ccd9e8'
51
+ },
52
+ vividBlue: {
53
+ 700: '#1c4cc3',
54
+ 800: '#0e369a'
55
+ },
56
+ black: {
57
+ 100: '#000000',
58
+ 200: '#101112',
59
+ 300: '#171818',
60
+ 400: '#292b2c',
61
+ DEFAULT: '#000000',
62
+ }
63
+ },
64
+ fontFamily: {
65
+ // "Avenir Next W01", "Proxima Nova W01", "", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif
66
+ sans: ['Inter var', ...defaultTheme.fontFamily.sans],
67
+ },
68
+ },
69
+ },
70
+ variants: {
71
+ extend: {},
72
+ },
73
+ plugins: [
74
+ require('@tailwindcss/forms'),
75
+ require('@tailwindcss/typography'),
76
+ ],
77
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-themes-light
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-23 00:00:00.000000000 Z
11
+ date: 2022-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -49,6 +49,8 @@ files:
49
49
  - README.md
50
50
  - Rakefile
51
51
  - app/assets/config/bullet_train_themes_light_manifest.js
52
+ - app/assets/javascript/application.light.js
53
+ - app/assets/stylesheets/light.tailwind.css
52
54
  - app/views/themes/light/_alert.html.erb
53
55
  - app/views/themes/light/_box.html.erb
54
56
  - app/views/themes/light/_breadcrumb.html.erb
@@ -77,6 +79,7 @@ files:
77
79
  - lib/bullet_train/themes/light/engine.rb
78
80
  - lib/bullet_train/themes/light/version.rb
79
81
  - lib/tasks/bullet_train/themes/light_tasks.rake
82
+ - tailwind.light.config.js
80
83
  homepage: https://github.com/bullet-train-co/bullet_train-themes-light
81
84
  licenses:
82
85
  - MIT