bullet_train-themes-hayabusa 1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +7 -0
  2. data/.bt-link +0 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.md +28 -0
  5. data/Rakefile +8 -0
  6. data/app/assets/config/bullet_train_themes_hayabusa_manifest.js +0 -0
  7. data/app/assets/stylesheets/hayabusa/actiontext.css +26 -0
  8. data/app/assets/stylesheets/hayabusa/application.css +33 -0
  9. data/app/assets/stylesheets/hayabusa/electron.css +46 -0
  10. data/app/assets/stylesheets/hayabusa/fields/cloudinary_image.css +58 -0
  11. data/app/assets/stylesheets/hayabusa/fields/date_field.css +19 -0
  12. data/app/assets/stylesheets/hayabusa/fields/index.css +5 -0
  13. data/app/assets/stylesheets/hayabusa/fields/phone_field.css +7 -0
  14. data/app/assets/stylesheets/hayabusa/fields/super_select.css +103 -0
  15. data/app/assets/stylesheets/hayabusa/fields/trix_editor.css +90 -0
  16. data/app/assets/stylesheets/hayabusa/mailer.scss +359 -0
  17. data/app/assets/stylesheets/hayabusa/tailwind/colors.css +25 -0
  18. data/app/assets/stylesheets/hayabusa/tailwind/components.css +151 -0
  19. data/app/assets/stylesheets/hayabusa/tailwind/dark-mode.css +218 -0
  20. data/app/assets/stylesheets/hayabusa/tailwind/utilities.css +49 -0
  21. data/app/assets/stylesheets/hayabusa/turn.css +44 -0
  22. data/app/assets/stylesheets/hayabusa.tailwind.css +5 -0
  23. data/app/assets/stylesheets/tailwindcss/base.css +1 -0
  24. data/app/assets/stylesheets/tailwindcss/components.css +1 -0
  25. data/app/assets/stylesheets/tailwindcss/utilities.css +1 -0
  26. data/app/javascript/application.hayabusa.js +0 -0
  27. data/app/views/themes/hayabusa/_alert.html.erb +13 -0
  28. data/app/views/themes/hayabusa/_box.html.erb +66 -0
  29. data/app/views/themes/hayabusa/_breadcrumb.html.erb +23 -0
  30. data/app/views/themes/hayabusa/_cell.html.erb +41 -0
  31. data/app/views/themes/hayabusa/_decision_line.html.erb +12 -0
  32. data/app/views/themes/hayabusa/_line.html.erb +3 -0
  33. data/app/views/themes/hayabusa/_notices.html.erb +15 -0
  34. data/app/views/themes/hayabusa/_page.html.erb +12 -0
  35. data/app/views/themes/hayabusa/_title.html.erb +20 -0
  36. data/app/views/themes/hayabusa/attributes/_base.html.erb +30 -0
  37. data/app/views/themes/hayabusa/attributes/_block.html.erb +9 -0
  38. data/app/views/themes/hayabusa/breadcrumbs/_actions.html.erb +22 -0
  39. data/app/views/themes/hayabusa/commentary/_box.html.erb +13 -0
  40. data/app/views/themes/hayabusa/conversations/_card.html.erb +21 -0
  41. data/app/views/themes/hayabusa/conversations/_comment.html.erb +26 -0
  42. data/app/views/themes/hayabusa/conversations/_message.html.erb +136 -0
  43. data/app/views/themes/hayabusa/conversations/_thread_border.html.erb +3 -0
  44. data/app/views/themes/hayabusa/fields/_field.html.erb +81 -0
  45. data/app/views/themes/hayabusa/forms/_errors.html.erb +14 -0
  46. data/app/views/themes/hayabusa/layouts/_account.html.erb +139 -0
  47. data/app/views/themes/hayabusa/layouts/_devise.html.erb +11 -0
  48. data/app/views/themes/hayabusa/layouts/_head.html.erb +8 -0
  49. data/app/views/themes/hayabusa/layouts/_mailer.html.erb +429 -0
  50. data/app/views/themes/hayabusa/memberships/_photos.html.erb +18 -0
  51. data/app/views/themes/hayabusa/menu/_heading.html.erb +3 -0
  52. data/app/views/themes/hayabusa/menu/_item.html.erb +16 -0
  53. data/app/views/themes/hayabusa/menu/_section.html.erb +7 -0
  54. data/app/views/themes/hayabusa/workflow/_box.html.erb +30 -0
  55. data/config/routes.rb +2 -0
  56. data/lib/bullet_train/themes/hayabusa/engine.rb +12 -0
  57. data/lib/bullet_train/themes/hayabusa/version.rb +7 -0
  58. data/lib/bullet_train/themes/hayabusa.rb +15 -0
  59. data/lib/tasks/bullet_train/themes/hayabusa_tasks.rake +53 -0
  60. data/tailwind.hayabusa.config.js +96 -0
  61. metadata +146 -0
@@ -0,0 +1,96 @@
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
+ './tmp/gems/*/app/views/**/*.html.erb',
11
+ './tmp/gems/*/app/helpers/**/*.rb',
12
+ './tmp/gems/*/app/assets/stylesheets/**/*.css',
13
+ './tmp/gems/*/app/javascript/**/*.js',
14
+ ],
15
+ darkMode: 'media',
16
+ theme: {
17
+ extend: {
18
+ fontSize: {
19
+ 'xs': '.81rem',
20
+ },
21
+ colors: {
22
+ red: {
23
+ 400: '#ee8989',
24
+ 500: '#e86060',
25
+ 900: '#652424',
26
+ },
27
+
28
+ yellow: {
29
+ 400: '#fcedbe',
30
+ 500: '#fbe6a8',
31
+ 900: '#6e6446',
32
+ },
33
+
34
+ pink: {
35
+ 400: '#FF8FE0',
36
+ 500: '#FF4FCF',
37
+ 900: '#FF0EBD',
38
+ },
39
+
40
+ soft_pink: {
41
+ 400: '#DF6AC3',
42
+ },
43
+
44
+ hayabusa_gray: {
45
+ 400: '#f2f3f4',
46
+ 500: '#e5e7e8',
47
+ 900: '#cacfd2',
48
+ },
49
+
50
+ primary: {
51
+ 300: 'var(--primary-300)',
52
+ 400: 'var(--primary-400)',
53
+ 500: 'var(--primary-500)',
54
+ 600: 'var(--primary-600)',
55
+ 700: 'var(--primary-700)',
56
+ 800: 'var(--primary-800)',
57
+ 900: 'var(--primary-900)',
58
+ },
59
+
60
+ darkPrimary: {
61
+ 300: 'var(--dark-primary-300)',
62
+ 400: 'var(--dark-primary-400)',
63
+ 500: 'var(--dark-primary-500)',
64
+ 600: 'var(--dark-primary-600)',
65
+ 700: 'var(--dark-primary-700)',
66
+ 800: 'var(--dark-primary-800)',
67
+ 900: 'var(--dark-primary-900)',
68
+ },
69
+
70
+ // This is a weird one-off for dark-mode.
71
+ darkAccent: {
72
+ 200: 'var(--dark-accent-200)',
73
+ },
74
+
75
+ black: {
76
+ 100: '#000000',
77
+ 200: '#101112',
78
+ 300: '#171818',
79
+ 400: '#292b2c',
80
+ DEFAULT: '#000000',
81
+ }
82
+ },
83
+ fontFamily: {
84
+ // "Avenir Next W01", "Proxima Nova W01", "", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif
85
+ sans: ['Inter var', ...defaultTheme.fontFamily.sans],
86
+ },
87
+ },
88
+ },
89
+ variants: {
90
+ extend: {},
91
+ },
92
+ plugins: [
93
+ require('@tailwindcss/forms'),
94
+ require('@tailwindcss/typography'),
95
+ ],
96
+ }
metadata ADDED
@@ -0,0 +1,146 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bullet_train-themes-hayabusa
3
+ version: !ruby/object:Gem::Version
4
+ version: '1.1'
5
+ platform: ruby
6
+ authors:
7
+ - Gabriel Zayas
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-06-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 7.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 7.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bullet_train-themes-tailwind_css
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bullet_train-themes-light
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: 'Bullet Train Themes: Hayabusa'
56
+ email:
57
+ - g-zayas@hotmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".bt-link"
63
+ - MIT-LICENSE
64
+ - README.md
65
+ - Rakefile
66
+ - app/assets/config/bullet_train_themes_hayabusa_manifest.js
67
+ - app/assets/stylesheets/hayabusa.tailwind.css
68
+ - app/assets/stylesheets/hayabusa/actiontext.css
69
+ - app/assets/stylesheets/hayabusa/application.css
70
+ - app/assets/stylesheets/hayabusa/electron.css
71
+ - app/assets/stylesheets/hayabusa/fields/cloudinary_image.css
72
+ - app/assets/stylesheets/hayabusa/fields/date_field.css
73
+ - app/assets/stylesheets/hayabusa/fields/index.css
74
+ - app/assets/stylesheets/hayabusa/fields/phone_field.css
75
+ - app/assets/stylesheets/hayabusa/fields/super_select.css
76
+ - app/assets/stylesheets/hayabusa/fields/trix_editor.css
77
+ - app/assets/stylesheets/hayabusa/mailer.scss
78
+ - app/assets/stylesheets/hayabusa/tailwind/colors.css
79
+ - app/assets/stylesheets/hayabusa/tailwind/components.css
80
+ - app/assets/stylesheets/hayabusa/tailwind/dark-mode.css
81
+ - app/assets/stylesheets/hayabusa/tailwind/utilities.css
82
+ - app/assets/stylesheets/hayabusa/turn.css
83
+ - app/assets/stylesheets/tailwindcss/base.css
84
+ - app/assets/stylesheets/tailwindcss/components.css
85
+ - app/assets/stylesheets/tailwindcss/utilities.css
86
+ - app/javascript/application.hayabusa.js
87
+ - app/views/themes/hayabusa/_alert.html.erb
88
+ - app/views/themes/hayabusa/_box.html.erb
89
+ - app/views/themes/hayabusa/_breadcrumb.html.erb
90
+ - app/views/themes/hayabusa/_cell.html.erb
91
+ - app/views/themes/hayabusa/_decision_line.html.erb
92
+ - app/views/themes/hayabusa/_line.html.erb
93
+ - app/views/themes/hayabusa/_notices.html.erb
94
+ - app/views/themes/hayabusa/_page.html.erb
95
+ - app/views/themes/hayabusa/_title.html.erb
96
+ - app/views/themes/hayabusa/attributes/_base.html.erb
97
+ - app/views/themes/hayabusa/attributes/_block.html.erb
98
+ - app/views/themes/hayabusa/breadcrumbs/_actions.html.erb
99
+ - app/views/themes/hayabusa/commentary/_box.html.erb
100
+ - app/views/themes/hayabusa/conversations/_card.html.erb
101
+ - app/views/themes/hayabusa/conversations/_comment.html.erb
102
+ - app/views/themes/hayabusa/conversations/_message.html.erb
103
+ - app/views/themes/hayabusa/conversations/_thread_border.html.erb
104
+ - app/views/themes/hayabusa/fields/_field.html.erb
105
+ - app/views/themes/hayabusa/forms/_errors.html.erb
106
+ - app/views/themes/hayabusa/layouts/_account.html.erb
107
+ - app/views/themes/hayabusa/layouts/_devise.html.erb
108
+ - app/views/themes/hayabusa/layouts/_head.html.erb
109
+ - app/views/themes/hayabusa/layouts/_mailer.html.erb
110
+ - app/views/themes/hayabusa/memberships/_photos.html.erb
111
+ - app/views/themes/hayabusa/menu/_heading.html.erb
112
+ - app/views/themes/hayabusa/menu/_item.html.erb
113
+ - app/views/themes/hayabusa/menu/_section.html.erb
114
+ - app/views/themes/hayabusa/workflow/_box.html.erb
115
+ - config/routes.rb
116
+ - lib/bullet_train/themes/hayabusa.rb
117
+ - lib/bullet_train/themes/hayabusa/engine.rb
118
+ - lib/bullet_train/themes/hayabusa/version.rb
119
+ - lib/tasks/bullet_train/themes/hayabusa_tasks.rake
120
+ - tailwind.hayabusa.config.js
121
+ homepage: https://github.com/bullet-train-co/bullet_train-themes-hayabusa
122
+ licenses:
123
+ - MIT
124
+ metadata:
125
+ homepage_uri: https://github.com/bullet-train-co/bullet_train-themes-hayabusa
126
+ source_code_uri: https://github.com/bullet-train-co/bullet_train-themes-hayabusa
127
+ post_install_message:
128
+ rdoc_options: []
129
+ require_paths:
130
+ - lib
131
+ required_ruby_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ required_rubygems_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
141
+ requirements: []
142
+ rubygems_version: 3.3.7
143
+ signing_key:
144
+ specification_version: 4
145
+ summary: 'Bullet Train Themes: Hayabusa'
146
+ test_files: []