Skip to content
View hossein-ghanbari's full-sized avatar

Block or report hossein-ghanbari

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
hossein-ghanbari/README.md

Pinned Loading

  1. rn-animation-header rn-animation-header Public

    animation header component for react native

    TypeScript 6

  2. rn-searchable-selectbox rn-searchable-selectbox Public

    searchable selectbox component for react native

    JavaScript 3

  3. js-music-player js-music-player Public

    Music player with JavaScript

    CSS 1

  4. Turn colors into lighter and darker Turn colors into lighter and darker
    1
    function makeNewColor(color, percent) {
    2
      var num = parseInt(color.replace("#", ""), 16),
    3
        amt = Math.round(2.55 * percent),
    4
        R = (num >> 16) + amt,
    5
        B = ((num >> 8) & 0x00ff) + amt,