bullet_train-themes-light 1.0.3 → 1.0.6

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: 5043bd981a4c2635d06c90be8594dfa727bc98c3862e776a3e1641de15b7cc70
4
- data.tar.gz: 5711f3d71a29df84f8f5fbf1f180030643a5c0149bf05a62f1a667dae7ecc171
3
+ metadata.gz: ced0f7433bce5700bfbe4aa9640365937d2fec14841f57e94bc9782619b574af
4
+ data.tar.gz: fdb09ad436901e86b74ec9c3ce1f88aeb4425d03aacd21354a1fe84b70c3345b
5
5
  SHA512:
6
- metadata.gz: 0b2e0c7c6889ed4209d1949362c92f392270cb78583fb7cf03fe95b8435f0000ee4cf0bca4fee9e2aeb821ec08a85315cf22b2251e2fdf8f4f06ae919f00ff78
7
- data.tar.gz: a7638d318e9b5a42e0ea607ad2fd4fa2d27c13b833cb70c6ab69f567111660f242d2498c008a392aff35152e277667190b5b7c26af6266cf308118be244ef25f
6
+ metadata.gz: 8e25170c6fc62d1821716bf75a3c14054c36b431711bfa1ac7d67455afddddd5f16281d4ba5484843454ac0fbdb9f31423ad4efeb454b9b16c6b0cafd5eaad88
7
+ data.tar.gz: b3f24af43a54b30712d0bc3250ced3b4c8740ed71c25327852208b0b2d0b8ccda2b2cbfa953c2b8b938ab352d9261b52f7df2ebbf53661b4a0de529e155e0486
@@ -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.3"
4
+ VERSION = "1.0.6"
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.3
4
+ version: 1.0.6
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-16 00:00:00.000000000 Z
11
+ date: 2022-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -49,6 +49,7 @@ files:
49
49
  - README.md
50
50
  - Rakefile
51
51
  - app/assets/config/bullet_train_themes_light_manifest.js
52
+ - app/assets/stylesheets/light.tailwind.css
52
53
  - app/views/themes/light/_alert.html.erb
53
54
  - app/views/themes/light/_box.html.erb
54
55
  - app/views/themes/light/_breadcrumb.html.erb
@@ -77,6 +78,7 @@ files:
77
78
  - lib/bullet_train/themes/light/engine.rb
78
79
  - lib/bullet_train/themes/light/version.rb
79
80
  - lib/tasks/bullet_train/themes/light_tasks.rake
81
+ - tailwind.light.config.js
80
82
  homepage: https://github.com/bullet-train-co/bullet_train-themes-light
81
83
  licenses:
82
84
  - MIT