PluginProbe ʕ •ᴥ•ʔ
NitroPack – Performance, Page Speed & Cache Plugin for Core Web Vitals, CDN & Image Optimization / 1.17.0
NitroPack – Performance, Page Speed & Cache Plugin for Core Web Vitals, CDN & Image Optimization v1.17.0
1.19.8 1.19.7 1.19.6 1.19.5 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.11.0 1.12.0 1.13.0 1.14.0 1.15.0 1.15.1 1.15.2 1.15.3 1.16.0 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.16.6 1.16.7 1.16.8 1.17.0 1.17.6 1.17.7 1.17.8 1.17.9 1.18.0 1.18.1 1.18.2 1.18.3 1.18.4 1.18.5 1.18.6 1.18.7 1.18.8 1.18.9 1.19.0 1.19.1 1.19.2 1.19.3 1.19.4 1.3.19 1.3.20 1.4.0 1.4.1 1.5.0 1.5.1 1.5.10 1.5.11 1.5.12 1.5.13 1.5.14 1.5.15 1.5.16 1.5.17 1.5.18 1.5.19 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.7.0 1.7.1 1.8.0 1.8.1 1.8.3 1.9.0 1.9.1 1.9.2
nitropack / view / stylesheet / scss / _variables.scss
nitropack / view / stylesheet / scss Last commit date
_helpers.scss 1 year ago _modals.scss 1 year ago _notifications.scss 1 year ago _select2.scss 1 year ago _variables.scss 1 year ago
_variables.scss
76 lines
1 /* Colors */
2 //green
3 $green-800: #005f4d;
4 $green-700: #007761;
5 $green-500: #00c7a2;
6 $green-400: #33d2b5;
7 $green-300: #3ff6d4;
8 $green-100: #b8fff2;
9 $green-50: #E9FFFB;
10 //purple
11 $purple-700: #4600cc;
12 $purple-500: #8240ff;
13 $purple-300: #b994ff;
14 $purple-100: #efe8ff;
15 $purple-50: #f7f3ff;
16 //gray
17 $gray-700: #1b004e;
18 $gray-600: #493371;
19 $gray-500: #776795;
20 $gray-300: #dbd7e3;
21 $gray-100: #f5f4f6;
22 //red
23 $red-800: #970928;
24 $red-600: #cf0c35;
25 $red-200: #f7d9df;
26 $red-100: #fbecef;
27 $red-50: #fdf2f2;
28 //blue
29 $blue-700: #1a56db;
30 $blue-200: #83bfffee;
31 $blue-100: #e1effe;
32 //yellow
33 $yellow-700: #987e00;
34 $yellow-500: #ffd400;
35 $yellow-200: #ffefa3;
36 $yellow-100: #fff8d7;
37 //assign
38 $primary-color: $purple-700;
39 $primary-hover: #3800a3;
40 $text-color: $gray-600;
41 $divider-color: #edebf1;
42 $toggle-color: #ada3bf;
43 $overlay-color: rgba(42, 0, 122, 0.5);
44 /* Typography */
45 $font: "Inter", sans-serif;
46 $font-size: 0.875rem;
47 $line-height: 24px;
48 /* Box Shadow */
49 $shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
50 $dropdown-shadow: 0 1px 3px rgba(27, 0, 78, 0.15);
51 $toast-shadow: 0 4px 12px rgba(0,0,0,.1);
52 /* Borders */
53 $border-radius: 4px;
54 /* layout */
55 $gutter: 1.5rem;
56 $transition: ease-in-out 0.3s;
57
58 @mixin btn() {
59 padding: 0.4rem 1.25rem;
60 border-radius: $border-radius;
61 border: 1px solid $primary-color;
62 color: $primary-color;
63 cursor: pointer;
64 transition: background-color $transition;
65 min-height: 2.25rem;
66 display: inline-block;
67 font-weight: 500;
68 text-wrap: nowrap;
69 text-decoration: none;
70 background: transparent;
71 }
72 @mixin btn_color($color) {
73 color: $color;
74 border-color: $color;
75 }
76