polished#darken JavaScript Examples
The following examples show how to use
polished#darken.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.js From uniswap-v1-frontend with GNU General Public License v3.0 | 6 votes |
CurrencySelect = styled.button`
align-items: center;
font-size: 1rem;
color: ${({ selected, theme }) => (selected ? theme.textColor : theme.royalBlue)};
height: 2rem;
border: 1px solid ${({ selected, theme }) => (selected ? theme.mercuryGray : theme.royalBlue)};
border-radius: 2.5rem;
background-color: ${({ selected, theme }) => (selected ? theme.concreteGray : theme.zumthorBlue)};
outline: none;
cursor: pointer;
user-select: none;
:hover {
border: 1px solid
${({ selected, theme }) => (selected ? darken(0.1, theme.mercuryGray) : darken(0.1, theme.royalBlue))};
}
:focus {
border: 1px solid ${({ theme }) => darken(0.1, theme.royalBlue)};
}
:active {
background-color: ${({ theme }) => theme.zumthorBlue};
}
`
Example #2
Source File: Checkbox.js From airdnd-frontend with MIT License | 6 votes |
hoverStyle = css`
border-color: ${({ theme }) => theme.color.black};
${({ map, theme }) =>
map &&
css`
color: ${darken(0.4, theme.color.gray)};
font-weight: 600;
`}
`
Example #3
Source File: index.js From spooky-info with GNU General Public License v3.0 | 6 votes |
ButtonLight = styled(Base)`
background-color: ${({ color, theme }) => (color ? transparentize(0.9, color) : transparentize(0.9, theme.primary1))};
color: ${({ color, theme }) => (color ? darken(0.1, color) : theme.primary1)};
min-width: fit-content;
border-radius: 12px;
white-space: nowrap;
a {
color: ${({ color, theme }) => (color ? darken(0.1, color) : theme.primary1)};
}
:hover {
background-color: ${({ color, theme }) =>
color ? transparentize(0.8, color) : transparentize(0.8, theme.primary1)};
}
`
Example #4
Source File: index.js From sorbet-finance with GNU General Public License v3.0 | 6 votes |
ButtonPrimary = styled(Base)`
background-color: ${({ theme }) => theme.primary1};
color: white;
&:focus {
box-shadow: 0 0 0 1pt ${({ theme }) => darken(0.05, theme.primary1)};
background-color: ${({ theme }) => darken(0.05, theme.primary1)};
}
&:hover {
background-color: ${({ theme }) => darken(0.05, theme.primary1)};
}
&:active {
box-shadow: 0 0 0 1pt ${({ theme }) => darken(0.1, theme.primary1)};
background-color: ${({ theme }) => darken(0.1, theme.primary1)};
}
&:disabled {
background-color: ${({ theme, altDisbaledStyle }) => (altDisbaledStyle ? theme.primary1 : theme.bg3)};
color: ${({ theme, altDisbaledStyle }) => (altDisbaledStyle ? 'white' : theme.text3)};
cursor: auto;
box-shadow: none;
border: 1px solid transparent;
outline: none;
}
`
Example #5
Source File: NavigationBar.jsx From MyHome-Web with Apache License 2.0 | 6 votes |
Item = styled.li`
padding: 0 10px;
cursor: pointer;
&:hover {
background-color: ${darken(0.05, styles.colors.grey)};
}
&:first-child {
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
&:last-child {
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
`
Example #6
Source File: styles.js From usepandas with MIT License | 6 votes |
PreHeader = styled.div`
background-color: ${darken("0.05", "#282a36")};
color: rgb(248, 248, 242, 0.75);
font-size: 12px;
line-height: 18px;
margin-top: 0.5rem;
padding: 0.8rem 1rem;
border-radius: 5px 5px 0 0;
`
Example #7
Source File: button.js From semana-hacktoberfest with MIT License | 6 votes |
Button = styled(motion.button)`
appearance: none;
text-decoration: none;
font-size: clamp(1.4rem, 4vw, 1.8rem);
font-weight: 600;
border-radius: .3rem;
display: inline-block;
padding: 1.5rem 3rem;
transition: background-color .25s ease;
cursor: pointer;
color: ${({ theme }) => theme.colors.text};
background-color: ${({ theme }) => theme.colors.primary};
&:focus,
&:hover {
background-color: ${({ theme }) => darken(0.15, theme.colors.primary)};
}
${media.lessThan('sm')`
width: 100%;
display: block;
text-align: center;
`}
`
Example #8
Source File: index.js From swap-frontend with GNU General Public License v3.0 | 6 votes |
CurrencySelect = styled.button`
align-items: center;
font-size: 1rem;
color: ${({ selected, theme }) => (selected ? theme.textColor : theme.royalBlue)};
height: 2rem;
border: 1px solid ${({ selected, theme }) => (selected ? theme.mercuryGray : theme.royalBlue)};
border-radius: 2.5rem;
background-color: ${({ selected, theme }) => (selected ? theme.concreteGray : theme.zumthorBlue)};
outline: none;
cursor: pointer;
user-select: none;
:hover {
border: 1px solid
${({ selected, theme }) => (selected ? darken(0.1, theme.mercuryGray) : darken(0.1, theme.royalBlue))};
}
:focus {
border: 1px solid ${({ theme }) => darken(0.1, theme.royalBlue)};
}
:active {
background-color: ${({ theme }) => theme.zumthorBlue};
}
`
Example #9
Source File: index.js From pine-interface with GNU General Public License v3.0 | 6 votes |
ButtonPrimary = styled(Base)`
background-color: ${({ theme }) => theme.primary1};
color: white;
&:focus {
box-shadow: 0 0 0 1pt ${({ theme }) => darken(0.05, theme.primary1)};
background-color: ${({ theme }) => darken(0.05, theme.primary1)};
}
&:hover {
background-color: ${({ theme }) => darken(0.05, theme.primary1)};
}
&:active {
box-shadow: 0 0 0 1pt ${({ theme }) => darken(0.1, theme.primary1)};
background-color: ${({ theme }) => darken(0.1, theme.primary1)};
}
&:disabled {
background-color: ${({ theme, altDisbaledStyle }) => (altDisbaledStyle ? theme.primary1 : theme.bg3)};
color: ${({ theme, altDisbaledStyle }) => (altDisbaledStyle ? 'white' : theme.text3)};
cursor: auto;
box-shadow: none;
border: 1px solid transparent;
outline: none;
}
`
Example #10
Source File: index.js From Smart-Swap-Protocol with GNU General Public License v3.0 | 6 votes |
CurrencySelect = styled.button`
align-items: center;
font-size: 1rem;
color: ${({ selected, theme }) => (selected ? theme.textColor : theme.royalBlue)};
height: 2rem;
border: 1px solid ${({ selected, theme }) => (selected ? theme.mercuryGray : theme.royalBlue)};
border-radius: 2.5rem;
background-color: ${({ selected, theme }) => (selected ? theme.concreteGray : theme.zumthorBlue)};
outline: none;
cursor: pointer;
user-select: none;
:hover {
border: 1px solid
${({ selected, theme }) => (selected ? darken(0.1, theme.mercuryGray) : darken(0.1, theme.royalBlue))};
}
:focus {
border: 1px solid ${({ theme }) => darken(0.1, theme.royalBlue)};
}
:active {
background-color: ${({ theme }) => theme.zumthorBlue};
}
`
Example #11
Source File: index.js From uniswap-v1-frontend with GNU General Public License v3.0 | 5 votes |
ErrorSpan = styled.span`
color: ${({ error, theme }) => error && theme.salmonRed};
:hover {
cursor: pointer;
color: ${({ error, theme }) => error && darken(0.1, theme.salmonRed)};
}
`
Example #12
Source File: Input.js From airdnd-frontend with MIT License | 5 votes |
borderStyle = css`
border: 1px solid
${({ message, theme }) =>
message ? darken(0.1, theme.color.gray) : lighten(0.2, theme.color.gray)};
border-radius: ${({ message }) => (message ? '2.2rem' : '4px')};
padding: ${({ message }) => (message ? '1.3rem 1.5rem' : '1.6rem 1rem')};
`