diff --git a/CHANGELOG.md b/CHANGELOG.md index 9888dd1..fb0450c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - BookmarksList view +## [0.3.0] - 2025-02-24 + +### Added + +- IT-Chapter rebranding instead of IN-Chapter + ## [0.2.0] - 2022-08-17 ### Added diff --git a/index.html b/index.html index 00ddc46..90e8986 100644 --- a/index.html +++ b/index.html @@ -6,13 +6,13 @@ name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> - + IT-Songbook - +
diff --git a/package.json b/package.json index 8136aea..8bd4451 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "songbook", - "version": "0.2.0", + "version": "0.3.0", "type": "module", "license": "MIT", "scripts": { diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png index 5111932..9d7abd8 100644 Binary files a/public/apple-touch-icon.png and b/public/apple-touch-icon.png differ diff --git a/public/favicon.ico b/public/favicon.ico index 6da534c..250465a 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/favicon.svg b/public/favicon.svg index 6fab076..2db0007 100644 --- a/public/favicon.svg +++ b/public/favicon.svg @@ -1,99 +1,66 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/icon-lg.png b/public/icon-lg.png index 667e2cf..382599d 100644 Binary files a/public/icon-lg.png and b/public/icon-lg.png differ diff --git a/public/icon-md.png b/public/icon-md.png index b22fdb6..31a4c69 100644 Binary files a/public/icon-md.png and b/public/icon-md.png differ diff --git a/public/mask-icon.svg b/public/mask-icon.svg index 6e59cea..4e9aac7 100644 --- a/public/mask-icon.svg +++ b/public/mask-icon.svg @@ -1,134 +1,53 @@ - - - - -Created by potrace 1.14, written by Peter Selinger 2001-2017 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/TagBadge.tsx b/src/components/TagBadge.tsx index d35abbf..bc50de1 100644 --- a/src/components/TagBadge.tsx +++ b/src/components/TagBadge.tsx @@ -1,14 +1,14 @@ import { Tag, TAG_NAMES } from '../definitions/tag'; const tagColors: Record = { - gasque: { foreground: '#44687D', background: '#81BED9' }, + gasque: { foreground: '#403050', background: '#cc99ff' }, beer: { foreground: '#7a3c01', background: '#D97a19' }, wine: { foreground: '#6b0612', background: '#ff3d4d' }, snaps: { foreground: '#f04816', background: '#efb850' }, punsch: { foreground: '#ca9e01', background: '#f7f143' }, foreign: { foreground: '#333333', background: '#dee2ee' }, nerdy: { foreground: '#100a87', background: '#85f27c', border: '#c9123a' }, - esoteric: { foreground: '#6d1380', background: '#f179f7' }, + esoteric: { foreground: '#44687D', background: '#91cae3' }, solemn: { foreground: '#660ac2', background: '#84f5ea' }, swe: { foreground: '#004b87', background: '#ffcd00' }, eng: { foreground: '#00216e', background: '#fa7d7a' }, diff --git a/src/style/components/navbar.scss b/src/style/components/navbar.scss index eb25c6d..247da06 100644 --- a/src/style/components/navbar.scss +++ b/src/style/components/navbar.scss @@ -12,7 +12,7 @@ nav.navbar { div.menu { height: $menu-height; - background-color: rgb(var(--primary-medium)); + background-color: rgb(var(--primary-dark)); color: rgba(var(--background), 1); @extend .flex-row; @@ -21,6 +21,18 @@ nav.navbar { h1 { margin-right: 0; font-size: 1.4rem; + + @media (min-width: 20em) { + &::before { + content: 'IT-'; + } + } + + @media (min-width: 27em) { + &::before { + content: "IT-Chapter's "; + } + } } button { diff --git a/src/style/globals.scss b/src/style/globals.scss index 78bd444..a4ec564 100644 --- a/src/style/globals.scss +++ b/src/style/globals.scss @@ -7,7 +7,7 @@ font-weight: 400; color: rgba(var(--foreground), 0.85); - background-color: var(--primary-medium); + background-color: var(--primary-dark); text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; @@ -16,10 +16,8 @@ --background: 255, 255, 255; --foreground: 0, 0, 0; - --primary: 64, 104, 125; - --primary-medium: 46, 81, 99; - --primary-dark: 28, 42, 51; - --primary-contrasty: 28, 104, 150; + --primary: 204, 153, 255; + --primary-dark: 64, 48, 80; --confirm: 0, 117, 14; --cancel: 222, 66, 58; diff --git a/vite.config.ts b/vite.config.ts index 5c00906..e617ecc 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -27,7 +27,7 @@ export default defineConfig({ name: 'IT-Songbook', short_name: 'Songbook', description: 'The IT-Chapters Webapp Songbook 2.0', - theme_color: '#2e5163', + theme_color: '#403050', icons: [ { src: 'icon-md.png',