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 Red: Theme = {
name: 'red',
colors: {
primary: {
DEFAULT: '#DC2626',
100: '#f9bbbb',
200: '#ef9090',
300: '#e76464',
400: '#df3939',
500: '#c62020',
600: '#9b1718',
700: '#6f0f11',
800: '#450708',
900: '#1e0000'
},
secondary: {
DEFAULT: '#20c6c6',
100: '#cff7f7',
200: '#9fefef',
300: '#6ee7e7',
400: '#3ee0e0',
500: '#20c6c6',
600: '#1a9e9e',
700: '#137676',
800: '#0d4f4f',
900: '#062727'
}
}
};