Skip to content

Instantly share code, notes, and snippets.

@syntax-tm
Last active December 24, 2021 05:02
Show Gist options
  • Save syntax-tm/a61b1221e55e16650fda5395c512612c to your computer and use it in GitHub Desktop.
Save syntax-tm/a61b1221e55e16650fda5395c512612c to your computer and use it in GitHub Desktop.
SAM Project Diagram
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"theme": "default"
}
@syntax-tm
Copy link
Author

syntax-tm commented Dec 24, 2021

@syntax-tm
Copy link
Author

syntax-tm commented Dec 24, 2021

%%{
    init: {
        'theme': 'base',
        'themeVariables':
        {
            'darkMode': true,
            'primaryColor': '#1a1a1a',
            'nodeBorder': '#555',
            'clusterBkg': '#673AB7',
            'clusterBorder': '#111',
            'defaultLinkColor': '#fff',
            'titleColor': '#fff',
            'edgeLabelBackground': '#fff',
            'nodeTextColor': '#fff'
        }
    }
}%%
flowchart LR
    subgraph apps[WPF Projects]
    direction LR
        Picker
        Manager
    end
    subgraph Picker
        direction LR
        A(SAM.WPF)
    end
    subgraph Manager
        direction LR
        B(SAM.WPF.Manager)
    end
    subgraph Core[Reference]
        direction LR
        C[SAM.WPF.Core]
    end
    subgraph API[Reference]
        direction LR
        D{{fa:fa-steam SAM.API}}
    end
    apps---Core
    Core---API
    class Picker picker;
    class Manager manager;
    class Core core;
    class API api;
    class A a;
    class B b;
    class C c;
    class D d;
    classDef picker fill:#5677FC;
    classDef manager fill:#5677FC;
    classDef core fill:#673ab7;
    classDef api fill:#4527a0;
    classDef fa:fa-steam fill:#fff;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment