Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nit: nailed it.

authored by

Thomas May and committed by
Tangled
fab9ae9f 797070f4

+37 -36
+36 -36
src/alf/themes.ts
··· 1393 1393 1394 1394 function getMaterial3ColorScheme() { 1395 1395 const MATERIAL_3_PALETTE: Palette = { 1396 - white: STATIC_VALUES.white, 1397 - black: STATIC_VALUES.black, 1398 - pink: STATIC_VALUES.pink, 1399 - yellow: STATIC_VALUES.yellow, 1400 - like: STATIC_VALUES.pink, 1396 + white: getMaterialYouColor('system_neutral1', 0), 1397 + black: getMaterialYouColor('system_neutral1', 1000), 1398 + pink: getMaterialYouColor('system_accent2', 500), 1399 + yellow: getMaterialYouColor('system_error', 200, STATIC_VALUES.yellow), 1400 + like: getMaterialYouColor('system_accent2', 500), 1401 1401 1402 1402 contrast_0: getMaterialYouColor('system_neutral1', 0), 1403 1403 contrast_25: getMaterialYouColor('system_neutral1', 10), ··· 1429 1429 primary_950: getMaterialYouColor('system_accent1', 900), 1430 1430 primary_975: getMaterialYouColor('system_accent1', 1000), 1431 1431 1432 - positive_25: getMaterialYouColor('system_accent3', 10), 1433 - positive_50: getMaterialYouColor('system_accent3', 50), 1434 - positive_100: getMaterialYouColor('system_accent3', 100), 1435 - positive_200: getMaterialYouColor('system_accent3', 200), 1436 - positive_300: getMaterialYouColor('system_accent3', 300), 1437 - positive_400: getMaterialYouColor('system_accent3', 400), 1438 - positive_500: getMaterialYouColor('system_accent3', 500), 1439 - positive_600: getMaterialYouColor('system_accent3', 600), 1440 - positive_700: getMaterialYouColor('system_accent3', 700), 1441 - positive_800: getMaterialYouColor('system_accent3', 800), 1442 - positive_900: getMaterialYouColor('system_accent3', 900), 1443 - positive_950: getMaterialYouColor('system_accent3', 900), 1444 - positive_975: getMaterialYouColor('system_accent3', 1000), 1432 + positive_25: getMaterialYouColor('system_accent2', 10), 1433 + positive_50: getMaterialYouColor('system_accent2', 50), 1434 + positive_100: getMaterialYouColor('system_accent2', 100), 1435 + positive_200: getMaterialYouColor('system_accent2', 200), 1436 + positive_300: getMaterialYouColor('system_accent2', 300), 1437 + positive_400: getMaterialYouColor('system_accent2', 400), 1438 + positive_500: getMaterialYouColor('system_accent2', 500), 1439 + positive_600: getMaterialYouColor('system_accent2', 600), 1440 + positive_700: getMaterialYouColor('system_accent2', 700), 1441 + positive_800: getMaterialYouColor('system_accent2', 800), 1442 + positive_900: getMaterialYouColor('system_accent2', 900), 1443 + positive_950: getMaterialYouColor('system_accent2', 900), 1444 + positive_975: getMaterialYouColor('system_accent2', 1000), 1445 1445 1446 1446 negative_25: getMaterialYouColor('system_error', 10, '#FFF5F7'), 1447 1447 negative_50: getMaterialYouColor('system_error', 50, '#FEEBEF'), ··· 1459 1459 } 1460 1460 1461 1461 const MATERIAL_3_SUBDUED_PALETTE: Palette = { 1462 - white: STATIC_VALUES.white, 1463 - black: STATIC_VALUES.black, 1464 - pink: STATIC_VALUES.pink, 1465 - yellow: STATIC_VALUES.yellow, 1466 - like: STATIC_VALUES.pink, 1462 + white: getMaterialYouColor('system_neutral1', 50), 1463 + black: getMaterialYouColor('system_neutral1', 900), 1464 + pink: getMaterialYouColor('system_accent3', 500), 1465 + yellow: getMaterialYouColor('system_error', 200, STATIC_VALUES.yellow), 1466 + like: getMaterialYouColor('system_accent3', 500), 1467 1467 1468 1468 contrast_0: getMaterialYouColor('system_neutral1', 50), 1469 1469 contrast_25: getMaterialYouColor('system_neutral1', 50), ··· 1495 1495 primary_950: getMaterialYouColor('system_accent1', 800), 1496 1496 primary_975: getMaterialYouColor('system_accent1', 900), 1497 1497 1498 - positive_25: getMaterialYouColor('system_accent3', 10), 1499 - positive_50: getMaterialYouColor('system_accent3', 50), 1500 - positive_100: getMaterialYouColor('system_accent3', 100), 1501 - positive_200: getMaterialYouColor('system_accent3', 200), 1502 - positive_300: getMaterialYouColor('system_accent3', 300), 1503 - positive_400: getMaterialYouColor('system_accent3', 400), 1504 - positive_500: getMaterialYouColor('system_accent3', 400), 1505 - positive_600: getMaterialYouColor('system_accent3', 500), 1506 - positive_700: getMaterialYouColor('system_accent3', 600), 1507 - positive_800: getMaterialYouColor('system_accent3', 700), 1508 - positive_900: getMaterialYouColor('system_accent3', 800), 1509 - positive_950: getMaterialYouColor('system_accent3', 800), 1510 - positive_975: getMaterialYouColor('system_accent3', 900), 1498 + positive_25: getMaterialYouColor('system_accent2', 10), 1499 + positive_50: getMaterialYouColor('system_accent2', 50), 1500 + positive_100: getMaterialYouColor('system_accent2', 100), 1501 + positive_200: getMaterialYouColor('system_accent2', 200), 1502 + positive_300: getMaterialYouColor('system_accent2', 300), 1503 + positive_400: getMaterialYouColor('system_accent2', 400), 1504 + positive_500: getMaterialYouColor('system_accent2', 400), 1505 + positive_600: getMaterialYouColor('system_accent2', 500), 1506 + positive_700: getMaterialYouColor('system_accent2', 600), 1507 + positive_800: getMaterialYouColor('system_accent2', 700), 1508 + positive_900: getMaterialYouColor('system_accent2', 800), 1509 + positive_950: getMaterialYouColor('system_accent2', 900), 1510 + positive_975: getMaterialYouColor('system_accent2', 900), 1511 1511 1512 1512 negative_25: getMaterialYouColor('system_error', 10, '#FFF5F7'), 1513 1513 negative_50: getMaterialYouColor('system_error', 50, '#FEEBEF'),
+1
src/alf/util/materialYou.android.tsx
··· 7 7 } from '@assembless/react-native-material-you' 8 8 9 9 let palette = getPaletteSync() as MaterialYouPalette 10 + 10 11 export function getMaterialYouColor( 11 12 color: [ 12 13 'system_accent1',