Move package "de.grimsi.gameyfin" to "org.gameyfin"

This commit is contained in:
grimsi
2025-06-14 19:23:12 +02:00
parent be0ba28c54
commit d3d46b6b01
328 changed files with 710 additions and 678 deletions
@@ -0,0 +1,31 @@
import {Theme} from '../theme';
export const Yellow: Theme = {
name: 'yellow',
colors: {
primary: {
DEFAULT: '#FACC15',
100: '#feefae',
200: '#fce47f',
300: '#fbd94e',
400: '#face1e',
500: '#e1b505',
600: '#af8c00',
700: '#7d6400',
800: '#4c3c00',
900: '#1c1400'
},
secondary: {
DEFAULT: '#0531e1',
100: '#c8d3fe',
200: '#91a7fd',
300: '#5a7afc',
400: '#234efb',
500: '#0531e1',
600: '#0427b4',
700: '#031d87',
800: '#02135a',
900: '#010a2d'
}
}
};