Skip to content
Jared Krajewski edited this page Oct 2, 2023 · 19 revisions

PASS (Personalized Access System For Services)

Light Mode Image Dark Mode Image <style> [data-color-mode="dark"] #light-image { display: none; } [data-color-mode="light"] #dark-image { display: none; } </style> <script> const colorMode = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';

if (colorMode === 'dark') { document.getElementById('light-image').style.display = 'none'; document.getElementById('dark-image').style.display = 'block'; } else { document.getElementById('light-image').style.display = 'block'; document.getElementById('dark-image').style.display = 'none'; } </script>

Welcome to the PASS wiki! The single source of truth for all information regarding the PASS project. This content was written by several CODE PDX volunteers.

🚧UNDER CONSTRUCTION🚧

Top of page ⬆️

Clone this wiki locally