source: petify-frontend/src/styles/theme.css@ 92e7c7a

Last change on this file since 92e7c7a was 92e7c7a, checked in by veronika-ils <ilioskaveronika@…>, 5 hours ago

Petify fullstack project

  • Property mode set to 100644
File size: 460 bytes
RevLine 
[92e7c7a]1:root {
2 /* Petify theme */
3 --petify-orange: #f97316;
4 --petify-orange-hover: #ea580c;
5
6 /* Bootstrap v5 CSS variables */
7 --bs-primary: var(--petify-orange);
8 --bs-primary-rgb: 249, 115, 22;
9
10 --bs-link-color: var(--petify-orange);
11 --bs-link-hover-color: var(--petify-orange-hover);
12
13 --bs-focus-ring-color: rgba(249, 115, 22, 0.25);
14}
15
16.navbar-brand {
17 color: var(--petify-orange);
18}
19
20.navbar-brand:hover {
21 color: var(--petify-orange-hover);
22}
Note: See TracBrowser for help on using the repository browser.